From 70b3d7327addd697fffe82dfff8b3124f8fb4936 Mon Sep 17 00:00:00 2001 From: Tanishq Dubey Date: Mon, 9 Sep 2024 11:51:54 -0400 Subject: [PATCH] MVP Complete --- app/components/ActionButton.tsx | 19 + app/components/ColorSchemeCard.tsx | 116 + app/components/Settings.tsx | 43 + app/components/SettingsIcon.tsx | 16 + app/globals.css | 6 +- app/page.tsx | 193 +- app/utils/colorSchemes.ts | 150 + app/utils/yamlExport.ts | 32 + formatted_themes.json | 9485 ++++++++++++++++++++++++++++ package-lock.json | 29 + package.json | 11 +- tailwind.config.ts | 9 + themes_downloader.py | 75 + 13 files changed, 10086 insertions(+), 98 deletions(-) create mode 100644 app/components/ActionButton.tsx create mode 100644 app/components/ColorSchemeCard.tsx create mode 100644 app/components/Settings.tsx create mode 100644 app/components/SettingsIcon.tsx create mode 100644 app/utils/colorSchemes.ts create mode 100644 app/utils/yamlExport.ts create mode 100644 formatted_themes.json create mode 100644 themes_downloader.py diff --git a/app/components/ActionButton.tsx b/app/components/ActionButton.tsx new file mode 100644 index 0000000..094f94c --- /dev/null +++ b/app/components/ActionButton.tsx @@ -0,0 +1,19 @@ +import React from 'react'; + +interface ActionButtonProps { + onClick: () => void; + label: string; +} + +const ActionButton: React.FC = ({ onClick, label }) => { + return ( + + ); +}; + +export default ActionButton; \ No newline at end of file diff --git a/app/components/ColorSchemeCard.tsx b/app/components/ColorSchemeCard.tsx new file mode 100644 index 0000000..c004352 --- /dev/null +++ b/app/components/ColorSchemeCard.tsx @@ -0,0 +1,116 @@ +import React from 'react'; +import Image from 'next/image'; +import { ColorScheme } from '../utils/colorSchemes'; +import { generateYAML } from '../utils/yamlExport'; +import { Highlight, themes } from 'prism-react-renderer'; + +interface ColorSchemeCardProps { + scheme: ColorScheme; + isSelected: boolean; + onSelect: () => void; +} + +const ColorSchemeCard: React.FC = ({ scheme, isSelected, onSelect }) => { + const codeExample = ` +// User object and function +const user = { + name: 'DWS', + power: 8999 +}; + +class Shape { + constructor(color) { + this.color = color; + } +} + +// Async data fetch simulation +async function fetchData() { + return await new Promise(resolve => setTimeout(() => resolve('Data loaded'), 500)); +} +const [even, odd] = [2, 4, 6, 8].reduce(([e, o], n) => n % 2 ? [e, [...o, n]] : [ + [...e, n], o +], [ + [], + [] +]); + +/* +Logging here +*/ +fetchData().then(data => console.log(data)); `; + + const handleDownload = (e: React.MouseEvent) => { + e.stopPropagation(); + const yaml = generateYAML(scheme); + const blob = new Blob([yaml], { type: 'text/yaml' }); + const url = URL.createObjectURL(blob); + const a = document.createElement('a'); + a.href = url; + a.download = `${scheme.name.replace(/\s+/g, '_').toLowerCase()}.yaml`; + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); + URL.revokeObjectURL(url); + }; + + return ( +
+
+
+

{scheme.name}

+ +
+
+ + {({ className, style, tokens, getLineProps, getTokenProps }) => ( +
+                {tokens.map((line, i) => (
+                  
+ {line.map((token, key) => { + let color = scheme.colors.primary.foreground; + if (token.types.includes('keyword')) color = scheme.colors.normal.blue; + if (token.types.includes('string')) color = scheme.colors.normal.green; + if (token.types.includes('number')) color = scheme.colors.normal.magenta; + if (token.types.includes('comment')) color = scheme.colors.bright.black; + if (token.types.includes('function')) color = scheme.colors.normal.yellow; + if (token.types.includes('operator')) color = scheme.colors.normal.cyan; + if (token.types.includes('class-name')) color = scheme.colors.bright.magenta; + if (token.types.includes('constant')) color = scheme.colors.bright.red; + if (token.types.includes('punctuation')) color = scheme.colors.bright.cyan; + if (token.types.includes('variable')) color = scheme.colors.bright.yellow; + return ; + })} +
+ ))} +
+ )} +
+
+
+ {Object.values(scheme.colors.normal).concat(Object.values(scheme.colors.bright)).map((color, index) => ( +
+
+ {color} +
+
+ ))} +
+
+
+ ); +}; + +export default ColorSchemeCard; \ No newline at end of file diff --git a/app/components/Settings.tsx b/app/components/Settings.tsx new file mode 100644 index 0000000..50fc2b6 --- /dev/null +++ b/app/components/Settings.tsx @@ -0,0 +1,43 @@ +import React from 'react'; + +interface SettingsProps { + isDarkMode: boolean; + onToggleDarkMode: () => void; + isOpen: boolean; + onClose: () => void; +} + +const Settings: React.FC = ({ isDarkMode, onToggleDarkMode, isOpen, onClose }) => { + if (!isOpen) return null; + + return ( +
+
+

Settings

+
+ Dark Mode + +
+ +
+
+ ); +}; + +export default Settings; \ No newline at end of file diff --git a/app/components/SettingsIcon.tsx b/app/components/SettingsIcon.tsx new file mode 100644 index 0000000..2305f5a --- /dev/null +++ b/app/components/SettingsIcon.tsx @@ -0,0 +1,16 @@ +import React from 'react'; +import Image from 'next/image'; + +interface SettingsIconProps { + onClick: () => void; +} + +const SettingsIcon: React.FC = ({ onClick }) => { + return ( + + ); +}; + +export default SettingsIcon; \ No newline at end of file diff --git a/app/globals.css b/app/globals.css index 13d40b8..f279d2f 100644 --- a/app/globals.css +++ b/app/globals.css @@ -17,7 +17,7 @@ body { color: var(--foreground); background: var(--background); - font-family: Arial, Helvetica, sans-serif; + font-family: var(--font-geist-sans), Arial, sans-serif; } @layer utilities { @@ -25,3 +25,7 @@ body { text-wrap: balance; } } + +.pt-full { + padding-top: 100%; +} diff --git a/app/page.tsx b/app/page.tsx index 433c8aa..29b45d9 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,101 +1,110 @@ -import Image from "next/image"; +'use client'; + +import React, { useState, useEffect } from 'react'; +import ColorSchemeCard from "./components/ColorSchemeCard"; +import ActionButton from "./components/ActionButton"; +import SettingsIcon from "./components/SettingsIcon"; +import Settings from "./components/Settings"; +import { ColorScheme, knownSchemes, generateRandomScheme, crossSchemes, generateSchemeFromGeneticAlgorithm } from './utils/colorSchemes'; export default function Home() { - return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - app/page.tsx - - . -
  2. -
  3. Save and see your changes instantly.
  4. -
+ const [schemes, setSchemes] = useState([]); + const [selectedSchemes, setSelectedSchemes] = useState([]); + const [isDarkMode, setIsDarkMode] = useState(false); + const [isSettingsOpen, setIsSettingsOpen] = useState(false); + const [likedSchemes, setLikedSchemes] = useState([]); + const [dislikedSchemes, setDislikedSchemes] = useState([]); -
- - Vercel logomark { + generateNewSchemes(); + setIsDarkMode(window.matchMedia('(prefers-color-scheme: dark)').matches); + const storedLikedSchemes = localStorage.getItem('likedSchemes'); + const storedDislikedSchemes = localStorage.getItem('dislikedSchemes'); + if (storedLikedSchemes) { + setLikedSchemes(JSON.parse(storedLikedSchemes)); + } + if (storedDislikedSchemes) { + setDislikedSchemes(JSON.parse(storedDislikedSchemes)); + } + }, []); + + useEffect(() => { + document.documentElement.classList.toggle('dark', isDarkMode); + }, [isDarkMode]); + + useEffect(() => { + localStorage.setItem('likedSchemes', JSON.stringify(likedSchemes)); + }, [likedSchemes]); + + useEffect(() => { + localStorage.setItem('dislikedSchemes', JSON.stringify(dislikedSchemes)); + }, [dislikedSchemes]); + + const generateNewSchemes = () => { + const newSchemes = [ + knownSchemes[Math.floor(Math.random() * knownSchemes.length)], + generateRandomScheme(), + likedSchemes.length > 0 ? generateSchemeFromGeneticAlgorithm(likedSchemes, dislikedSchemes) : generateRandomScheme() + ]; + setSchemes(newSchemes); + setSelectedSchemes([]); + }; + + const handleSchemeSelect = (index: number) => { + setSelectedSchemes(prev => { + if (prev.includes(index)) { + return prev.filter(i => i !== index); + } else if (prev.length < 2) { + return [...prev, index]; + } + return prev; + }); + }; + + const handleAction = () => { + if (selectedSchemes.length === 2) { + const crossedScheme = crossSchemes(schemes[selectedSchemes[0]], schemes[selectedSchemes[1]]); + setLikedSchemes(prev => [...prev, schemes[selectedSchemes[0]], schemes[selectedSchemes[1]]]); + setSchemes([crossedScheme, knownSchemes[Math.floor(Math.random() * knownSchemes.length)], generateSchemeFromGeneticAlgorithm(likedSchemes, dislikedSchemes)]); + setSelectedSchemes([]); + } else { + setDislikedSchemes(prev => [...prev, ...schemes]); + generateNewSchemes(); + } + }; + + const toggleDarkMode = () => { + setIsDarkMode(prev => !prev); + }; + + return ( + ); } diff --git a/app/utils/colorSchemes.ts b/app/utils/colorSchemes.ts new file mode 100644 index 0000000..bfbf69e --- /dev/null +++ b/app/utils/colorSchemes.ts @@ -0,0 +1,150 @@ +type Color = string; // Hex color code +type ColorScheme = { + name: string; + colors: { + primary: { background: Color; foreground: Color }; + normal: { + black: Color; red: Color; green: Color; yellow: Color; + blue: Color; magenta: Color; cyan: Color; white: Color; + }; + bright: { + black: Color; red: Color; green: Color; yellow: Color; + blue: Color; magenta: Color; cyan: Color; white: Color; + }; + }; +}; + +import knownSchemesData from '../../formatted_themes.json'; + +const knownSchemes: ColorScheme[] = knownSchemesData; + +function generateRandomColor(): Color { + return '#' + Math.floor(Math.random()*16777215).toString(16).padStart(6, '0'); +} + +function generateCreativeName(): string { + const adjectives = ['Cosmic', 'Neon', 'Mystic', 'Retro', 'Cyber', 'Ethereal', 'Vibrant', 'Dreamy', 'Futuristic', 'Nostalgic']; + const nouns = ['Sunset', 'Aurora', 'Galaxy', 'Ocean', 'Forest', 'Desert', 'Nebula', 'Horizon', 'Oasis', 'Metropolis']; + return `${adjectives[Math.floor(Math.random() * adjectives.length)]} ${nouns[Math.floor(Math.random() * nouns.length)]}`; +} + +function generateRandomScheme(): ColorScheme { + let x = { + name: generateCreativeName(), + colors: { + primary: { background: generateRandomColor(), foreground: generateRandomColor() }, + normal: { + black: generateRandomColor(), red: generateRandomColor(), green: generateRandomColor(), yellow: generateRandomColor(), + blue: generateRandomColor(), magenta: generateRandomColor(), cyan: generateRandomColor(), white: generateRandomColor() + }, + bright: { + black: generateRandomColor(), red: generateRandomColor(), green: generateRandomColor(), yellow: generateRandomColor(), + blue: generateRandomColor(), magenta: generateRandomColor(), cyan: generateRandomColor(), white: generateRandomColor() + } + } + }; + + x.colors.primary.background = x.colors.normal.black; + x.colors.primary.foreground = x.colors.bright.white; + + return x; +} + +function crossTitles(title1: string, title2: string): string { + const words1 = title1.split(' '); + const words2 = title2.split(' '); + const firstWord = Math.random() < 0.5 ? words1[0] : words2[1]; + const secondWord = Math.random() < 0.5 ? words2[0] : words1[1]; + return `${firstWord} ${secondWord}`; +} + +function crossSchemes(scheme1: ColorScheme, scheme2: ColorScheme): ColorScheme { + const crossColor = (color1: Color, color2: Color): Color => { + const r = Math.round((parseInt(color1.slice(1, 3), 16) + parseInt(color2.slice(1, 3), 16)) / 2); + const g = Math.round((parseInt(color1.slice(3, 5), 16) + parseInt(color2.slice(3, 5), 16)) / 2); + const b = Math.round((parseInt(color1.slice(5, 7), 16) + parseInt(color2.slice(5, 7), 16)) / 2); + return `#${r.toString(16).padStart(2, '0')}${g.toString(16).padStart(2, '0')}${b.toString(16).padStart(2, '0')}`; + }; + + return { + name: crossTitles(scheme1.name, scheme2.name), + colors: { + primary: { + background: crossColor(scheme1.colors.primary.background, scheme2.colors.primary.background), + foreground: crossColor(scheme1.colors.primary.foreground, scheme2.colors.primary.foreground) + }, + normal: { + black: crossColor(scheme1.colors.normal.black, scheme2.colors.normal.black), + red: crossColor(scheme1.colors.normal.red, scheme2.colors.normal.red), + green: crossColor(scheme1.colors.normal.green, scheme2.colors.normal.green), + yellow: crossColor(scheme1.colors.normal.yellow, scheme2.colors.normal.yellow), + blue: crossColor(scheme1.colors.normal.blue, scheme2.colors.normal.blue), + magenta: crossColor(scheme1.colors.normal.magenta, scheme2.colors.normal.magenta), + cyan: crossColor(scheme1.colors.normal.cyan, scheme2.colors.normal.cyan), + white: crossColor(scheme1.colors.normal.white, scheme2.colors.normal.white) + }, + bright: { + black: crossColor(scheme1.colors.bright.black, scheme2.colors.bright.black), + red: crossColor(scheme1.colors.bright.red, scheme2.colors.bright.red), + green: crossColor(scheme1.colors.bright.green, scheme2.colors.bright.green), + yellow: crossColor(scheme1.colors.bright.yellow, scheme2.colors.bright.yellow), + blue: crossColor(scheme1.colors.bright.blue, scheme2.colors.bright.blue), + magenta: crossColor(scheme1.colors.bright.magenta, scheme2.colors.bright.magenta), + cyan: crossColor(scheme1.colors.bright.cyan, scheme2.colors.bright.cyan), + white: crossColor(scheme1.colors.bright.white, scheme2.colors.bright.white) + } + } + }; +} + +function mutateColor(color: Color): Color { + const r = parseInt(color.slice(1, 3), 16); + const g = parseInt(color.slice(3, 5), 16); + const b = parseInt(color.slice(5, 7), 16); + + const mutateComponent = (component: number) => { + const mutation = Math.floor(Math.random() * 51) - 25; // Random number between -25 and 25 + return Math.max(0, Math.min(255, component + mutation)); + }; + + const newR = mutateComponent(r); + const newG = mutateComponent(g); + const newB = mutateComponent(b); + + return `#${newR.toString(16).padStart(2, '0')}${newG.toString(16).padStart(2, '0')}${newB.toString(16).padStart(2, '0')}`; +} + +function generateSchemeFromGeneticAlgorithm(likedSchemes: ColorScheme[], dislikedSchemes: ColorScheme[]): ColorScheme { + if (likedSchemes.length === 0) { + return generateRandomScheme(); + } + + const parentScheme = likedSchemes[Math.floor(Math.random() * likedSchemes.length)]; + const newScheme: ColorScheme = JSON.parse(JSON.stringify(parentScheme)); // Deep copy + + // Mutate colors + Object.keys(newScheme.colors).forEach((colorGroup) => { + Object.keys(newScheme.colors[colorGroup]).forEach((colorName) => { + if (Math.random() < 0.3) { // 30% chance of mutation + newScheme.colors[colorGroup][colorName] = mutateColor(newScheme.colors[colorGroup][colorName]); + } + }); + }); + + // Avoid similarities with disliked schemes + dislikedSchemes.forEach(dislikedScheme => { + Object.keys(newScheme.colors).forEach((colorGroup) => { + Object.keys(newScheme.colors[colorGroup]).forEach((colorName) => { + if (newScheme.colors[colorGroup][colorName] === dislikedScheme.colors[colorGroup][colorName]) { + newScheme.colors[colorGroup][colorName] = mutateColor(newScheme.colors[colorGroup][colorName]); + } + }); + }); + }); + + newScheme.name = generateCreativeName(); + return newScheme; +} + +export type { ColorScheme }; +export { knownSchemes, generateRandomScheme, crossSchemes, generateSchemeFromGeneticAlgorithm }; \ No newline at end of file diff --git a/app/utils/yamlExport.ts b/app/utils/yamlExport.ts new file mode 100644 index 0000000..0587fdc --- /dev/null +++ b/app/utils/yamlExport.ts @@ -0,0 +1,32 @@ +import { ColorScheme } from './colorSchemes'; + +export function generateYAML(scheme: ColorScheme): string { + return `colors: + # Default colors + primary: + background: '${scheme.colors.primary.background}' + foreground: '${scheme.colors.primary.foreground}' + + # Normal colors + normal: + black: '${scheme.colors.normal.black}' + red: '${scheme.colors.normal.red}' + green: '${scheme.colors.normal.green}' + yellow: '${scheme.colors.normal.yellow}' + blue: '${scheme.colors.normal.blue}' + magenta: '${scheme.colors.normal.magenta}' + cyan: '${scheme.colors.normal.cyan}' + white: '${scheme.colors.normal.white}' + + # Bright colors + bright: + black: '${scheme.colors.bright.black}' + red: '${scheme.colors.bright.red}' + green: '${scheme.colors.bright.green}' + yellow: '${scheme.colors.bright.yellow}' + blue: '${scheme.colors.bright.blue}' + magenta: '${scheme.colors.bright.magenta}' + cyan: '${scheme.colors.bright.cyan}' + white: '${scheme.colors.bright.white}' +`; +} \ No newline at end of file diff --git a/formatted_themes.json b/formatted_themes.json new file mode 100644 index 0000000..1a487e7 --- /dev/null +++ b/formatted_themes.json @@ -0,0 +1,9485 @@ +[ + { + "name": "3024 Day", + "colors": { + "primary": { + "background": "#F7F7F7", + "foreground": "#4A4543" + }, + "normal": { + "black": "#090300", + "red": "#DB2D20", + "green": "#01A252", + "yellow": "#FDED02", + "blue": "#01A0E4", + "magenta": "#A16A94", + "cyan": "#B5E4F4", + "white": "#A5A2A2" + }, + "bright": { + "black": "#5C5855", + "red": "#E8BBD0", + "green": "#3A3432", + "yellow": "#4A4543", + "blue": "#807D7C", + "magenta": "#D6D5D4", + "cyan": "#CDAB53", + "white": "#F7F7F7" + } + } + }, + { + "name": "3024 Night", + "colors": { + "primary": { + "background": "#090300", + "foreground": "#A5A2A2" + }, + "normal": { + "black": "#090300", + "red": "#DB2D20", + "green": "#01A252", + "yellow": "#FDED02", + "blue": "#01A0E4", + "magenta": "#A16A94", + "cyan": "#B5E4F4", + "white": "#A5A2A2" + }, + "bright": { + "black": "#5C5855", + "red": "#E8BBD0", + "green": "#3A3432", + "yellow": "#4A4543", + "blue": "#807D7C", + "magenta": "#D6D5D4", + "cyan": "#CDAB53", + "white": "#F7F7F7" + } + } + }, + { + "name": "Aci", + "colors": { + "primary": { + "background": "#0D1926", + "foreground": "#B4E1FD" + }, + "normal": { + "black": "#363636", + "red": "#FF0883", + "green": "#83FF08", + "yellow": "#FF8308", + "blue": "#0883FF", + "magenta": "#8308FF", + "cyan": "#08FF83", + "white": "#B6B6B6" + }, + "bright": { + "black": "#424242", + "red": "#FF1E8E", + "green": "#8EFF1E", + "yellow": "#FF8E1E", + "blue": "#1E8EFF", + "magenta": "#8E1EFF", + "cyan": "#1EFF8E", + "white": "#C2C2C2" + } + } + }, + { + "name": "Aco", + "colors": { + "primary": { + "background": "#1F1305", + "foreground": "#B4E1FD" + }, + "normal": { + "black": "#3F3F3F", + "red": "#FF0883", + "green": "#83FF08", + "yellow": "#FF8308", + "blue": "#0883FF", + "magenta": "#8308FF", + "cyan": "#08FF83", + "white": "#BEBEBE" + }, + "bright": { + "black": "#474747", + "red": "#FF1E8E", + "green": "#8EFF1E", + "yellow": "#FF8E1E", + "blue": "#1E8EFF", + "magenta": "#8E1EFF", + "cyan": "#1EFF8E", + "white": "#C4C4C4" + } + } + }, + { + "name": "Adventure Time", + "colors": { + "primary": { + "background": "#1F1D45", + "foreground": "#F8DCC0" + }, + "normal": { + "black": "#050404", + "red": "#BD0013", + "green": "#4AB118", + "yellow": "#E7741E", + "blue": "#0F4AC6", + "magenta": "#665993", + "cyan": "#70A598", + "white": "#F8DCC0" + }, + "bright": { + "black": "#4E7CBF", + "red": "#FC5F5A", + "green": "#9EFF6E", + "yellow": "#EFC11A", + "blue": "#1997C6", + "magenta": "#9B5953", + "cyan": "#C8FAF4", + "white": "#F6F5FB" + } + } + }, + { + "name": "Afterglow", + "colors": { + "primary": { + "background": "#222222", + "foreground": "#D0D0D0" + }, + "normal": { + "black": "#151515", + "red": "#A53C23", + "green": "#7B9246", + "yellow": "#D3A04D", + "blue": "#6C99BB", + "magenta": "#9F4E85", + "cyan": "#7DD6CF", + "white": "#D0D0D0" + }, + "bright": { + "black": "#505050", + "red": "#A53C23", + "green": "#7B9246", + "yellow": "#D3A04D", + "blue": "#547C99", + "magenta": "#9F4E85", + "cyan": "#7DD6CF", + "white": "#F5F5F5" + } + } + }, + { + "name": "Alien Blood", + "colors": { + "primary": { + "background": "#0F1610", + "foreground": "#637D75" + }, + "normal": { + "black": "#112616", + "red": "#7F2B27", + "green": "#2F7E25", + "yellow": "#717F24", + "blue": "#2F6A7F", + "magenta": "#47587F", + "cyan": "#327F77", + "white": "#647D75" + }, + "bright": { + "black": "#3C4812", + "red": "#E08009", + "green": "#18E000", + "yellow": "#BDE000", + "blue": "#00AAE0", + "magenta": "#0058E0", + "cyan": "#00E0C4", + "white": "#73FA91" + } + } + }, + { + "name": "Apprentice", + "colors": { + "primary": { + "background": "#262626", + "foreground": "#BCBCBC" + }, + "normal": { + "black": "#1C1C1C", + "red": "#AF5F5F", + "green": "#5F875F", + "yellow": "#87875F", + "blue": "#5F87AF", + "magenta": "#5F5F87", + "cyan": "#5F8787", + "white": "#6C6C6C" + }, + "bright": { + "black": "#444444", + "red": "#FF8700", + "green": "#87AF87", + "yellow": "#FFFFAF", + "blue": "#8FAFD7", + "magenta": "#8787AF", + "cyan": "#5FAFAF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Argonaut", + "colors": { + "primary": { + "background": "#0E1019", + "foreground": "#FFFAF4" + }, + "normal": { + "black": "#232323", + "red": "#FF000F", + "green": "#8CE10B", + "yellow": "#FFB900", + "blue": "#008DF8", + "magenta": "#6D43A6", + "cyan": "#00D8EB", + "white": "#FFFFFF" + }, + "bright": { + "black": "#444444", + "red": "#FF2740", + "green": "#ABE15B", + "yellow": "#FFD242", + "blue": "#0092FF", + "magenta": "#9A5FEB", + "cyan": "#67FFF0", + "white": "#FFFFFF" + } + } + }, + { + "name": "Arthur", + "colors": { + "primary": { + "background": "#1C1C1C", + "foreground": "#DDEEDD" + }, + "normal": { + "black": "#3D352A", + "red": "#CD5C5C", + "green": "#86AF80", + "yellow": "#E8AE5B", + "blue": "#6495ED", + "magenta": "#DEB887", + "cyan": "#B0C4DE", + "white": "#BBAA99" + }, + "bright": { + "black": "#554444", + "red": "#CC5533", + "green": "#88AA22", + "yellow": "#FFA75D", + "blue": "#87CEEB", + "magenta": "#996600", + "cyan": "#B0C4DE", + "white": "#DDCCBB" + } + } + }, + { + "name": "Astrodark", + "colors": { + "primary": { + "background": "#1A1D23", + "foreground": "#9B9FA9" + }, + "normal": { + "black": "#111317", + "red": "#F8747E", + "green": "#75AD47", + "yellow": "#D09214", + "blue": "#50A4E9", + "magenta": "#CC83E3", + "cyan": "#00B298", + "white": "#ADB0BB" + }, + "bright": { + "black": "#576176", + "red": "#FAA5AB", + "green": "#A5CD84", + "yellow": "#EFBD58", + "blue": "#8DC3F1", + "magenta": "#DEAEED", + "cyan": "#27FFDF", + "white": "#CACCD3" + } + } + }, + { + "name": "Atelier Cave", + "colors": { + "primary": { + "background": "#19171C", + "foreground": "#7E7887" + }, + "normal": { + "black": "#BE4678", + "red": "#BE4678", + "green": "#2A9292", + "yellow": "#A06E3B", + "blue": "#576DDB", + "magenta": "#BF40BF", + "cyan": "#398BC6", + "white": "#E2DFE7" + }, + "bright": { + "black": "#655F6D", + "red": "#AA573C", + "green": "#2A9292", + "yellow": "#A06E3B", + "blue": "#955AE7", + "magenta": "#BF40BF", + "cyan": "#398BC6", + "white": "#EFECF4" + } + } + }, + { + "name": "Atelier Dune", + "colors": { + "primary": { + "background": "#20201D", + "foreground": "#999580" + }, + "normal": { + "black": "#D73737", + "red": "#D73737", + "green": "#60AC39", + "yellow": "#AE9513", + "blue": "#6684E1", + "magenta": "#D43552", + "cyan": "#1FAD83", + "white": "#E8E4CF" + }, + "bright": { + "black": "#7D7A68", + "red": "#B65611", + "green": "#60AC39", + "yellow": "#AE9513", + "blue": "#B854D4", + "magenta": "#D43552", + "cyan": "#1FAD83", + "white": "#FEFBEC" + } + } + }, + { + "name": "Atelier Estuary", + "colors": { + "primary": { + "background": "#22221B", + "foreground": "#878573" + }, + "normal": { + "black": "#BA6236", + "red": "#BA6236", + "green": "#7D9726", + "yellow": "#A5980D", + "blue": "#36A166", + "magenta": "#9D6C7C", + "cyan": "#5B9D48", + "white": "#E7E6DF" + }, + "bright": { + "black": "#6C6B5A", + "red": "#AE7313", + "green": "#7D9726", + "yellow": "#A5980D", + "blue": "#5F9182", + "magenta": "#9D6C7C", + "cyan": "#5B9D48", + "white": "#F4F3EC" + } + } + }, + { + "name": "Atelier Forest", + "colors": { + "primary": { + "background": "#1B1918", + "foreground": "#9C9491" + }, + "normal": { + "black": "#F22C40", + "red": "#F22C40", + "green": "#7B9726", + "yellow": "#C38418", + "blue": "#407EE7", + "magenta": "#C33FF3", + "cyan": "#3D97B8", + "white": "#E6E2E0" + }, + "bright": { + "black": "#766E6B", + "red": "#DF5320", + "green": "#7B9726", + "yellow": "#C38418", + "blue": "#6666EA", + "magenta": "#C33FF3", + "cyan": "#3D97B8", + "white": "#F1EFEE" + } + } + }, + { + "name": "Atelier Heath", + "colors": { + "primary": { + "background": "#1B181B", + "foreground": "#9E8F9E" + }, + "normal": { + "black": "#CA402B", + "red": "#CA402B", + "green": "#918B3B", + "yellow": "#BB8A35", + "blue": "#516AEC", + "magenta": "#CC33CC", + "cyan": "#159393", + "white": "#D8CAD8" + }, + "bright": { + "black": "#776977", + "red": "#A65926", + "green": "#918B3B", + "yellow": "#BB8A35", + "blue": "#7B59C0", + "magenta": "#CC33CC", + "cyan": "#159393", + "white": "#F7F3F7" + } + } + }, + { + "name": "Atelier Lakeside", + "colors": { + "primary": { + "background": "#161B1D", + "foreground": "#7195A8" + }, + "normal": { + "black": "#D22D72", + "red": "#D22D72", + "green": "#568C3B", + "yellow": "#8A8A0F", + "blue": "#257FAD", + "magenta": "#B72DD2", + "cyan": "#2D8F6F", + "white": "#C1E4F6" + }, + "bright": { + "black": "#5A7B8C", + "red": "#935C25", + "green": "#568C3B", + "yellow": "#8A8A0F", + "blue": "#6B6BB8", + "magenta": "#B72DD2", + "cyan": "#2D8F6F", + "white": "#EBF8FF" + } + } + }, + { + "name": "Atelier Plateau", + "colors": { + "primary": { + "background": "#1B1818", + "foreground": "#7E7777" + }, + "normal": { + "black": "#CA4949", + "red": "#CA4949", + "green": "#4B8B8B", + "yellow": "#A06E3B", + "blue": "#7272CA", + "magenta": "#BD5187", + "cyan": "#5485B6", + "white": "#E7DFDF" + }, + "bright": { + "black": "#655D5D", + "red": "#B45A3C", + "green": "#4B8B8B", + "yellow": "#A06E3B", + "blue": "#8464C4", + "magenta": "#BD5187", + "cyan": "#5485B6", + "white": "#F4ECEC" + } + } + }, + { + "name": "Atelier Savanna", + "colors": { + "primary": { + "background": "#171C19", + "foreground": "#78877D" + }, + "normal": { + "black": "#B16139", + "red": "#B16139", + "green": "#489963", + "yellow": "#A07E3B", + "blue": "#478C90", + "magenta": "#867469", + "cyan": "#1C9AA0", + "white": "#DFE7E2" + }, + "bright": { + "black": "#5F6D64", + "red": "#9F713C", + "green": "#489963", + "yellow": "#A07E3B", + "blue": "#55859B", + "magenta": "#867469", + "cyan": "#1C9AA0", + "white": "#ECF4EE" + } + } + }, + { + "name": "Atelier Seaside", + "colors": { + "primary": { + "background": "#131513", + "foreground": "#809980" + }, + "normal": { + "black": "#E6193C", + "red": "#E6193C", + "green": "#29A329", + "yellow": "#98981B", + "blue": "#3D62F5", + "magenta": "#E619C3", + "cyan": "#1999B3", + "white": "#CFE8CF" + }, + "bright": { + "black": "#687D68", + "red": "#87711D", + "green": "#29A329", + "yellow": "#98981B", + "blue": "#AD2BEE", + "magenta": "#E619C3", + "cyan": "#1999B3", + "white": "#F4FBF4" + } + } + }, + { + "name": "Atelier Sulphurpool", + "colors": { + "primary": { + "background": "#202746", + "foreground": "#898EA4" + }, + "normal": { + "black": "#C94922", + "red": "#C94922", + "green": "#AC9739", + "yellow": "#C08B30", + "blue": "#3D8FD1", + "magenta": "#9C637A", + "cyan": "#22A2C9", + "white": "#DFE2F1" + }, + "bright": { + "black": "#6B7394", + "red": "#C76B29", + "green": "#AC9739", + "yellow": "#C08B30", + "blue": "#6679CC", + "magenta": "#9C637A", + "cyan": "#22A2C9", + "white": "#F5F7FF" + } + } + }, + { + "name": "Atom", + "colors": { + "primary": { + "background": "#161719", + "foreground": "#C5C8C6" + }, + "normal": { + "black": "#000000", + "red": "#FD5FF1", + "green": "#87C38A", + "yellow": "#FFD7B1", + "blue": "#85BEFD", + "magenta": "#B9B6FC", + "cyan": "#85BEFD", + "white": "#E0E0E0" + }, + "bright": { + "black": "#000000", + "red": "#FD5FF1", + "green": "#94FA36", + "yellow": "#F5FFA8", + "blue": "#96CBFE", + "magenta": "#B9B6FC", + "cyan": "#85BEFD", + "white": "#E0E0E0" + } + } + }, + { + "name": "Aura", + "colors": { + "primary": { + "background": "#15141B", + "foreground": "#EDECEE" + }, + "normal": { + "black": "#110F18", + "red": "#FF6767", + "green": "#61FFCA", + "yellow": "#FFCA85", + "blue": "#A277FF", + "magenta": "#A277FF", + "cyan": "#61FFCA", + "white": "#EDECEE" + }, + "bright": { + "black": "#6D6D6D", + "red": "#FFCA85", + "green": "#A277FF", + "yellow": "#FFCA85", + "blue": "#A277FF", + "magenta": "#A277FF", + "cyan": "#61FFCA", + "white": "#EDECEE" + } + } + }, + { + "name": "Ayu Dark", + "colors": { + "primary": { + "background": "#0A0E14", + "foreground": "#B3B1AD" + }, + "normal": { + "black": "#0A0E14", + "red": "#FF3333", + "green": "#C2D94C", + "yellow": "#FF8F40", + "blue": "#59C2FF", + "magenta": "#FFEE99", + "cyan": "#95E6CB", + "white": "#B3B1AD" + }, + "bright": { + "black": "#4D5566", + "red": "#FF3333", + "green": "#C2D94C", + "yellow": "#FF8F40", + "blue": "#59C2FF", + "magenta": "#FFEE99", + "cyan": "#95E6CB", + "white": "#B3B1AD" + } + } + }, + { + "name": "Ayu Light", + "colors": { + "primary": { + "background": "#FAFAFA", + "foreground": "#575F66" + }, + "normal": { + "black": "#575F66", + "red": "#F51818", + "green": "#86B300", + "yellow": "#F2AE49", + "blue": "#399EE6", + "magenta": "#A37ACC", + "cyan": "#4CBF99", + "white": "#FAFAFA" + }, + "bright": { + "black": "#8A9199", + "red": "#F51818", + "green": "#86B300", + "yellow": "#F2AE49", + "blue": "#399EE6", + "magenta": "#A37ACC", + "cyan": "#4CBF99", + "white": "#FAFAFA" + } + } + }, + { + "name": "Ayu Mirage", + "colors": { + "primary": { + "background": "#1F2430", + "foreground": "#CBCCC6" + }, + "normal": { + "black": "#1F2430", + "red": "#FF3333", + "green": "#BAE67E", + "yellow": "#FFA759", + "blue": "#73D0FF", + "magenta": "#D4BFFF", + "cyan": "#95E6CB", + "white": "#CBCCC6" + }, + "bright": { + "black": "#707A8C", + "red": "#FF3333", + "green": "#BAE67E", + "yellow": "#FFA759", + "blue": "#73D0FF", + "magenta": "#D4BFFF", + "cyan": "#95E6CB", + "white": "#CBCCC6" + } + } + }, + { + "name": "Azu", + "colors": { + "primary": { + "background": "#09111A", + "foreground": "#D9E6F2" + }, + "normal": { + "black": "#000000", + "red": "#AC6D74", + "green": "#74AC6D", + "yellow": "#ACA46D", + "blue": "#6D74AC", + "magenta": "#A46DAC", + "cyan": "#6DACA4", + "white": "#E6E6E6" + }, + "bright": { + "black": "#262626", + "red": "#D6B8BC", + "green": "#BCD6B8", + "yellow": "#D6D3B8", + "blue": "#B8BCD6", + "magenta": "#D3B8D6", + "cyan": "#B8D6D3", + "white": "#FFFFFF" + } + } + }, + { + "name": "Base2Tone Cave", + "colors": { + "primary": { + "background": "#222021", + "foreground": "#9f999b" + }, + "normal": { + "black": "#222021", + "red": "#936c7a", + "green": "#cca133", + "yellow": "#ffcc4d", + "blue": "#9c818b", + "magenta": "#cca133", + "cyan": "#d27998", + "white": "#9f999b" + }, + "bright": { + "black": "#635f60", + "red": "#ddaf3c", + "green": "#2f2d2e", + "yellow": "#565254", + "blue": "#706b6d", + "magenta": "#f0a8c1", + "cyan": "#c39622", + "white": "#ffebf2" + } + } + }, + { + "name": "Base2Tone Desert", + "colors": { + "primary": { + "background": "#292724", + "foreground": "#ada594" + }, + "normal": { + "black": "#292724", + "red": "#816f4b", + "green": "#ec9255", + "yellow": "#ffb380", + "blue": "#957e50", + "magenta": "#ec9255", + "cyan": "#ac8e53", + "white": "#ada594" + }, + "bright": { + "black": "#7e7767", + "red": "#f29d63", + "green": "#3d3a34", + "yellow": "#615c51", + "blue": "#908774", + "magenta": "#ddcba6", + "cyan": "#e58748", + "white": "#f2ead9" + } + } + }, + { + "name": "Base2Tone Drawbridge", + "colors": { + "primary": { + "background": "#1b1f32", + "foreground": "#9094a7" + }, + "normal": { + "black": "#1b1f32", + "red": "#627af4", + "green": "#67c9e4", + "yellow": "#99e9ff", + "blue": "#7289fd", + "magenta": "#67c9e4", + "cyan": "#8b9efd", + "white": "#9094a7" + }, + "bright": { + "black": "#51587b", + "red": "#75d5f0", + "green": "#252a41", + "yellow": "#444b6f", + "blue": "#5e6587", + "magenta": "#c3cdfe", + "cyan": "#5cbcd6", + "white": "#e1e6ff" + } + } + }, + { + "name": "Base2Tone Earth", + "colors": { + "primary": { + "background": "#322d29", + "foreground": "#b5a9a1" + }, + "normal": { + "black": "#322d29", + "red": "#816d5f", + "green": "#d9b154", + "yellow": "#fcc440", + "blue": "#88786d", + "magenta": "#d9b154", + "cyan": "#967e6e", + "white": "#b5a9a1" + }, + "bright": { + "black": "#6a5f58", + "red": "#e6b84d", + "green": "#3f3a37", + "yellow": "#5b534d", + "blue": "#796b63", + "magenta": "#dfb99f", + "cyan": "#cda956", + "white": "#fff3eb" + } + } + }, + { + "name": "Base2Tone Evening", + "colors": { + "primary": { + "background": "#2a2734", + "foreground": "#a4a1b5" + }, + "normal": { + "black": "#2a2734", + "red": "#8a75f5", + "green": "#ffad5c", + "yellow": "#ffcc99", + "blue": "#9a86fd", + "magenta": "#ffad5c", + "cyan": "#afa0fe", + "white": "#a4a1b5" + }, + "bright": { + "black": "#6c6783", + "red": "#ffb870", + "green": "#363342", + "yellow": "#545167", + "blue": "#787391", + "magenta": "#d9d2fe", + "cyan": "#ffa142", + "white": "#eeebff" + } + } + }, + { + "name": "Base2Tone Field", + "colors": { + "primary": { + "background": "#18201e", + "foreground": "#8ea4a0" + }, + "normal": { + "black": "#18201e", + "red": "#0fbda0", + "green": "#3be381", + "yellow": "#85ffb8", + "blue": "#25d0b4", + "magenta": "#3be381", + "cyan": "#40ddc3", + "white": "#8ea4a0" + }, + "bright": { + "black": "#5a6d6a", + "red": "#55ec94", + "green": "#242e2c", + "yellow": "#42524f", + "blue": "#667a77", + "magenta": "#88f2e0", + "cyan": "#25d46e", + "white": "#a8fff1" + } + } + }, + { + "name": "Base2Tone Forest", + "colors": { + "primary": { + "background": "#2a2d2a", + "foreground": "#a1b5a1" + }, + "normal": { + "black": "#2a2d2a", + "red": "#5c705c", + "green": "#bfd454", + "yellow": "#e5fb79", + "blue": "#687d68", + "magenta": "#bfd454", + "cyan": "#8fae8f", + "white": "#a1b5a1" + }, + "bright": { + "black": "#535f53", + "red": "#cbe25a", + "green": "#353b35", + "yellow": "#485148", + "blue": "#5e6e5e", + "magenta": "#c8e4c8", + "cyan": "#b1c44f", + "white": "#f0fff0" + } + } + }, + { + "name": "Base2Tone Garden", + "colors": { + "primary": { + "background": "#1e1f1e", + "foreground": "#969c96" + }, + "normal": { + "black": "#1e1f1e", + "red": "#3fac39", + "green": "#db9257", + "yellow": "#e0cab8", + "blue": "#4cb946", + "magenta": "#db9257", + "cyan": "#6bcc66", + "white": "#969c96" + }, + "bright": { + "black": "#5d605c", + "red": "#dba070", + "green": "#2b2c2a", + "yellow": "#505350", + "blue": "#696d69", + "magenta": "#b7e3b5", + "cyan": "#dd843c", + "white": "#dcf0db" + } + } + }, + { + "name": "Base2Tone Heath", + "colors": { + "primary": { + "background": "#222022", + "foreground": "#9e999f" + }, + "normal": { + "black": "#222022", + "red": "#8f6c93", + "green": "#cc8c33", + "yellow": "#ffd599", + "blue": "#9a819c", + "magenta": "#cc8c33", + "cyan": "#cb79d2", + "white": "#9e999f" + }, + "bright": { + "black": "#635f63", + "red": "#d9b98c", + "green": "#2f2d2f", + "yellow": "#575158", + "blue": "#6f6b70", + "magenta": "#eaa8f0", + "cyan": "#c38022", + "white": "#fdebff" + } + } + }, + { + "name": "Base2Tone Lake", + "colors": { + "primary": { + "background": "#192d34", + "foreground": "#7ba8b7" + }, + "normal": { + "black": "#192d34", + "red": "#3e91ac", + "green": "#cbbb4d", + "yellow": "#ffeb66", + "blue": "#499fbc", + "magenta": "#cbbb4d", + "cyan": "#62b1cb", + "white": "#7ba8b7" + }, + "bright": { + "black": "#3d6876", + "red": "#d6c65c", + "green": "#223c44", + "yellow": "#335966", + "blue": "#467686", + "magenta": "#a5d8e9", + "cyan": "#c4b031", + "white": "#e1f7ff" + } + } + }, + { + "name": "Base2Tone Lavender", + "colors": { + "primary": { + "background": "#201d2a", + "foreground": "#9992b0" + }, + "normal": { + "black": "#201d2a", + "red": "#9375f5", + "green": "#d294ff", + "yellow": "#ecd1ff", + "blue": "#a286fd", + "magenta": "#d294ff", + "cyan": "#b5a0fe", + "white": "#9992b0" + }, + "bright": { + "black": "#625a7c", + "red": "#dba8ff", + "green": "#2c2839", + "yellow": "#4b455f", + "blue": "#6e658b", + "magenta": "#dcd2fe", + "cyan": "#ca80ff", + "white": "#efebff" + } + } + }, + { + "name": "Base2Tone Mall", + "colors": { + "primary": { + "background": "#1e1e1f", + "foreground": "#97959d" + }, + "normal": { + "black": "#1e1e1f", + "red": "#a17efc", + "green": "#75bfff", + "yellow": "#b3dbff", + "blue": "#b294ff", + "magenta": "#75bfff", + "cyan": "#c5adff", + "white": "#97959d" + }, + "bright": { + "black": "#5e5c60", + "red": "#8ac8ff", + "green": "#2b2b2c", + "yellow": "#515053", + "blue": "#6a686e", + "magenta": "#e5dbff", + "cyan": "#69b5f7", + "white": "#f4f0ff" + } + } + }, + { + "name": "Base2Tone Meadow", + "colors": { + "primary": { + "background": "#192834", + "foreground": "#7b9eb7" + }, + "normal": { + "black": "#192834", + "red": "#277fbe", + "green": "#80bf40", + "yellow": "#a6f655", + "blue": "#4299d7", + "magenta": "#80bf40", + "cyan": "#47adf5", + "white": "#7b9eb7" + }, + "bright": { + "black": "#3d5e76", + "red": "#8cdd3c", + "green": "#223644", + "yellow": "#335166", + "blue": "#466b86", + "magenta": "#afddfe", + "cyan": "#73b234", + "white": "#d1ecff" + } + } + }, + { + "name": "Base2Tone Morning", + "colors": { + "primary": { + "background": "#232834", + "foreground": "#8d95a5" + }, + "normal": { + "black": "#232834", + "red": "#1659df", + "green": "#b29762", + "yellow": "#e5ddcd", + "blue": "#3d75e6", + "magenta": "#b29762", + "cyan": "#728fcb", + "white": "#8d95a5" + }, + "bright": { + "black": "#656e81", + "red": "#c6b28b", + "green": "#31363f", + "yellow": "#4f5664", + "blue": "#707a8f", + "magenta": "#b7c9eb", + "cyan": "#9a7c42", + "white": "#dee6f7" + } + } + }, + { + "name": "Base2Tone Motel", + "colors": { + "primary": { + "background": "#242323", + "foreground": "#a5979a" + }, + "normal": { + "black": "#242323", + "red": "#956f76", + "green": "#f8917c", + "yellow": "#ffc8bd", + "blue": "#a7868b", + "magenta": "#f8917c", + "cyan": "#b89da2", + "white": "#a5979a" + }, + "bright": { + "black": "#766b6c", + "red": "#ffa28f", + "green": "#373434", + "yellow": "#5a5354", + "blue": "#86797b", + "magenta": "#dec9cc", + "cyan": "#f77c64", + "white": "#f0dbdf" + } + } + }, + { + "name": "Base2Tone Pool", + "colors": { + "primary": { + "background": "#2a2433", + "foreground": "#9a90a7" + }, + "normal": { + "black": "#2a2433", + "red": "#aa75f5", + "green": "#f87972", + "yellow": "#ffb6b3", + "blue": "#b886fd", + "magenta": "#f87972", + "cyan": "#c7a0fe", + "white": "#9a90a7" + }, + "bright": { + "black": "#635775", + "red": "#fc8983", + "green": "#372f42", + "yellow": "#574b68", + "blue": "#706383", + "magenta": "#e4d2fe", + "cyan": "#f36f68", + "white": "#f3ebff" + } + } + }, + { + "name": "Base2Tone Porch", + "colors": { + "primary": { + "background": "#221e24", + "foreground": "#9f95a3" + }, + "normal": { + "black": "#221e24", + "red": "#9466a3", + "green": "#f39b68", + "yellow": "#ffc29e", + "blue": "#a77cb6", + "magenta": "#f39b68", + "cyan": "#ba95c6", + "white": "#9f95a3" + }, + "bright": { + "black": "#645a68", + "red": "#f8aa7c", + "green": "#302a32", + "yellow": "#574e5a", + "blue": "#716774", + "magenta": "#dfcbe6", + "cyan": "#ec8d55", + "white": "#f2e3f7" + } + } + }, + { + "name": "Base2Tone Sea", + "colors": { + "primary": { + "background": "#1d262f", + "foreground": "#a1aab5" + }, + "normal": { + "black": "#1d262f", + "red": "#34659d", + "green": "#0fc78a", + "yellow": "#47ebb4", + "blue": "#57718e", + "magenta": "#0fc78a", + "cyan": "#6e9bcf", + "white": "#a1aab5" + }, + "bright": { + "black": "#4a5f78", + "red": "#14e19d", + "green": "#27323f", + "yellow": "#405368", + "blue": "#738191", + "magenta": "#afd4fe", + "cyan": "#0db57d", + "white": "#ebf4ff" + } + } + }, + { + "name": "Base2Tone Space", + "colors": { + "primary": { + "background": "#24242e", + "foreground": "#a1a1b5" + }, + "normal": { + "black": "#24242e", + "red": "#7676f4", + "green": "#ec7336", + "yellow": "#fe8c52", + "blue": "#767693", + "magenta": "#ec7336", + "cyan": "#8a8aad", + "white": "#a1a1b5" + }, + "bright": { + "black": "#5b5b76", + "red": "#f37b3f", + "green": "#333342", + "yellow": "#515167", + "blue": "#737391", + "magenta": "#cecee3", + "cyan": "#e66e33", + "white": "#ebebff" + } + } + }, + { + "name": "Base2Tone Suburb", + "colors": { + "primary": { + "background": "#1e202f", + "foreground": "#878ba6" + }, + "normal": { + "black": "#1e202f", + "red": "#7586f5", + "green": "#fb6fa9", + "yellow": "#ffb3d2", + "blue": "#8696fd", + "magenta": "#fb6fa9", + "cyan": "#a0acfe", + "white": "#878ba6" + }, + "bright": { + "black": "#4f5472", + "red": "#fe81b5", + "green": "#292c3d", + "yellow": "#444864", + "blue": "#5b6080", + "magenta": "#d2d8fe", + "cyan": "#f764a1", + "white": "#ebedff" + } + } + }, + { + "name": "Base4Tone Classic A", + "colors": { + "primary": { + "background": "#211d1c", + "foreground": "#a19391" + }, + "normal": { + "black": "#211d1c", + "red": "#8d9f04", + "green": "#dd40a4", + "yellow": "#f17ec7", + "blue": "#eb8275", + "magenta": "#dc9118", + "cyan": "#e963b8", + "white": "#eee8e8" + }, + "bright": { + "black": "#0d0807", + "red": "#b9cf17", + "green": "#f391cf", + "yellow": "#f6b1dd", + "blue": "#f8cac3", + "magenta": "#e8a02c", + "cyan": "#fbbab1", + "white": "#f9f6f6" + } + } + }, + { + "name": "Base4Tone Classic B", + "colors": { + "primary": { + "background": "#211e1c", + "foreground": "#a29790" + }, + "normal": { + "black": "#211e1c", + "red": "#669f04", + "green": "#de5745", + "yellow": "#f18c7e", + "blue": "#e78b55", + "magenta": "#c1aa15", + "cyan": "#e97263", + "white": "#eeeae8" + }, + "bright": { + "black": "#0d0907", + "red": "#8bcf17", + "green": "#f39c91", + "yellow": "#fbbab1", + "blue": "#f7cdb6", + "magenta": "#dcc218", + "cyan": "#f5c1a3", + "white": "#f9f7f6" + } + } + }, + { + "name": "Base4Tone Classic C", + "colors": { + "primary": { + "background": "#221f1c", + "foreground": "#a39b8f" + }, + "normal": { + "black": "#221f1c", + "red": "#049a61", + "green": "#de5745", + "yellow": "#f18c7e", + "blue": "#e6971a", + "magenta": "#adc115", + "cyan": "#e97263", + "white": "#eeebe8" + }, + "bright": { + "black": "#0d0b07", + "red": "#16ca85", + "green": "#f39c91", + "yellow": "#fbbab1", + "blue": "#f5d8a8", + "magenta": "#c5dc18", + "cyan": "#f3cd91", + "white": "#f9f8f6" + } + } + }, + { + "name": "Base4Tone Classic D", + "colors": { + "primary": { + "background": "#21211c", + "foreground": "#a2a090" + }, + "normal": { + "black": "#21211c", + "red": "#049582", + "green": "#da6b2b", + "yellow": "#ee9968", + "blue": "#cfb617", + "magenta": "#82c115", + "cyan": "#e6854d", + "white": "#eeede8" + }, + "bright": { + "black": "#0d0c07", + "red": "#1cc4ae", + "green": "#f0a57a", + "yellow": "#f5c1a3", + "blue": "#f6edb1", + "magenta": "#95dc18", + "cyan": "#f2e58c", + "white": "#f9f8f6" + } + } + }, + { + "name": "Base4Tone Classic E", + "colors": { + "primary": { + "background": "#21211c", + "foreground": "#a0a290" + }, + "normal": { + "black": "#21211c", + "red": "#088ea0", + "green": "#c27905", + "yellow": "#e8a02c", + "blue": "#b9cf17", + "magenta": "#5cba21", + "cyan": "#dc9118", + "white": "#edeee8" + }, + "bright": { + "black": "#0d0d07", + "red": "#25bcd0", + "green": "#eaa83e", + "yellow": "#f3cd91", + "blue": "#eef6b1", + "magenta": "#69d425", + "cyan": "#e6f28c", + "white": "#f9f9f6" + } + } + }, + { + "name": "Base4Tone Classic F", + "colors": { + "primary": { + "background": "#1f211c", + "foreground": "#9ba191" + }, + "normal": { + "black": "#1f211c", + "red": "#0b88d0", + "green": "#a48f04", + "yellow": "#dcc218", + "blue": "#8bcf17", + "magenta": "#15bc52", + "cyan": "#c1aa15", + "white": "#ebeee8" + }, + "bright": { + "black": "#0b0d07", + "red": "#47b5f5", + "green": "#e6ca1a", + "yellow": "#f2e58c", + "blue": "#ddf6b1", + "magenta": "#18d85e", + "cyan": "#cdf28c", + "white": "#f8f9f6" + } + } + }, + { + "name": "Base4Tone Classic I", + "colors": { + "primary": { + "background": "#1d201d", + "foreground": "#949e95" + }, + "normal": { + "black": "#1d201d", + "red": "#5c6feb", + "green": "#91a404", + "yellow": "#c5dc18", + "blue": "#24cc38", + "magenta": "#23b4c7", + "cyan": "#adc115", + "white": "#e8ede9" + }, + "bright": { + "black": "#080d08", + "red": "#929ff7", + "green": "#cee61a", + "yellow": "#e6f28c", + "blue": "#b5f2bc", + "magenta": "#3ccadd", + "cyan": "#97eda1", + "white": "#f6f9f6" + } + } + }, + { + "name": "Base4Tone Classic L", + "colors": { + "primary": { + "background": "#1b2221", + "foreground": "#8ea4a1" + }, + "normal": { + "black": "#1b2221", + "red": "#7667e4", + "green": "#0da51f", + "yellow": "#2bda3f", + "blue": "#1cc4ae", + "magenta": "#659efb", + "cyan": "#22bf34", + "white": "#e8eeed" + }, + "bright": { + "black": "#070d0c", + "red": "#a095f3", + "green": "#3cdd4f", + "yellow": "#97eda1", + "blue": "#adf0e7", + "magenta": "#88b4fc", + "cyan": "#93ece0", + "white": "#f6f9f8" + } + } + }, + { + "name": "Base4Tone Classic O", + "colors": { + "primary": { + "background": "#1a1d23", + "foreground": "#8995a9" + }, + "normal": { + "black": "#1a1d23", + "red": "#a24ad9", + "green": "#0d9c89", + "yellow": "#1ed2ba", + "blue": "#74a8fb", + "magenta": "#9488f2", + "cyan": "#1bbba6", + "white": "#e7eaee" + }, + "bright": { + "black": "#07090d", + "red": "#c27eed", + "green": "#2fdac3", + "yellow": "#93ece0", + "blue": "#c7dcff", + "magenta": "#aba1f7", + "cyan": "#c2d9ff", + "white": "#f6f7f9" + } + } + }, + { + "name": "Base4Tone Classic P", + "colors": { + "primary": { + "background": "#1c1d21", + "foreground": "#9092a2" + }, + "normal": { + "black": "#1c1d21", + "red": "#c039d5", + "green": "#1398aa", + "yellow": "#3ccadd", + "blue": "#929ff7", + "magenta": "#a57af0", + "cyan": "#23b4c7", + "white": "#e8e8ee" + }, + "bright": { + "black": "#07080d", + "red": "#db75eb", + "green": "#5ad2e2", + "yellow": "#a4e6ef", + "blue": "#d0d5fb", + "magenta": "#b792f6", + "cyan": "#c6cdfb", + "white": "#f6f6f9" + } + } + }, + { + "name": "Base4Tone Classic Q", + "colors": { + "primary": { + "background": "#1d1d20", + "foreground": "#95949e" + }, + "normal": { + "black": "#1d1d20", + "red": "#d4359a", + "green": "#4287f5", + "yellow": "#88b4fc", + "blue": "#a095f3", + "magenta": "#ba6cea", + "cyan": "#659efb", + "white": "#e9e8ed" + }, + "bright": { + "black": "#08070d", + "red": "#eb75c0", + "green": "#9cc1fc", + "yellow": "#c2d9ff", + "blue": "#d9d5fc", + "magenta": "#c988f2", + "cyan": "#d1cbfb", + "white": "#f6f6f9" + } + } + }, + { + "name": "Base4Tone Classic R", + "colors": { + "primary": { + "background": "#1e1d20", + "foreground": "#98949e" + }, + "normal": { + "black": "#1e1d20", + "red": "#d53975", + "green": "#6577ec", + "yellow": "#a0acf8", + "blue": "#af88f2", + "magenta": "#d763e9", + "cyan": "#8493f6", + "white": "#eae8ed" + }, + "bright": { + "black": "#09070d", + "red": "#eb75a2", + "green": "#aeb8f9", + "yellow": "#c6cdfb", + "blue": "#ddcbfb", + "magenta": "#e17ef1", + "cyan": "#d6c2fa", + "white": "#f7f6f9" + } + } + }, + { + "name": "Base4Tone Classic S", + "colors": { + "primary": { + "background": "#1f1d20", + "foreground": "#9a949e" + }, + "normal": { + "black": "#1f1d20", + "red": "#d64f3d", + "green": "#7e70e6", + "yellow": "#aba1f7", + "blue": "#c27eed", + "magenta": "#e963b8", + "cyan": "#9488f2", + "white": "#ebe8ed" + }, + "bright": { + "black": "#0b070d", + "red": "#eb8275", + "green": "#b7aff8", + "yellow": "#d1cbfb", + "blue": "#e6c8f9", + "magenta": "#f17ec7", + "cyan": "#e0baf7", + "white": "#f8f6f9" + } + } + }, + { + "name": "Base4Tone Classic T", + "colors": { + "primary": { + "background": "#201d20", + "foreground": "#9d949e" + }, + "normal": { + "black": "#201d20", + "red": "#ce672c", + "green": "#9263e3", + "yellow": "#b792f6", + "blue": "#db75eb", + "magenta": "#e96396", + "cyan": "#a57af0", + "white": "#ede8ed" + }, + "bright": { + "black": "#0c070d", + "red": "#e78b55", + "green": "#c0a1f7", + "yellow": "#d6c2fa", + "blue": "#f1c3f8", + "magenta": "#f17eaa", + "cyan": "#edb1f6", + "white": "#f8f6f9" + } + } + }, + { + "name": "Base4Tone Classic U", + "colors": { + "primary": { + "background": "#201d20", + "foreground": "#9e949d" + }, + "normal": { + "black": "#201d20", + "red": "#ce672c", + "green": "#aa52e0", + "yellow": "#c988f2", + "blue": "#eb75dd", + "magenta": "#e96375", + "cyan": "#ba6cea", + "white": "#ede8ed" + }, + "bright": { + "black": "#0d070c", + "red": "#e78b55", + "green": "#d19af4", + "yellow": "#e0baf7", + "blue": "#f8c3f2", + "magenta": "#f17e8e", + "cyan": "#f6b1ee", + "white": "#f9f6f8" + } + } + }, + { + "name": "Base4Tone Classic W", + "colors": { + "primary": { + "background": "#201d1e", + "foreground": "#9e9498" + }, + "normal": { + "black": "#201d1e", + "red": "#b87305", + "green": "#ca45de", + "yellow": "#e17ef1", + "blue": "#eb75a2", + "magenta": "#e97263", + "cyan": "#d763e9", + "white": "#ede8ea" + }, + "bright": { + "black": "#0d080a", + "red": "#e6971a", + "green": "#e691f3", + "yellow": "#edb1f6", + "blue": "#f8bfd5", + "magenta": "#f18c7e", + "cyan": "#f6b1cc", + "white": "#f9f6f7" + } + } + }, + { + "name": "Base4Tone Modern C", + "colors": { + "primary": { + "background": "#221f1c", + "foreground": "#a39b8f" + }, + "normal": { + "black": "#221f1c", + "red": "#5c6feb", + "green": "#dd407c", + "yellow": "#f17eaa", + "blue": "#e6971a", + "magenta": "#1bbba6", + "cyan": "#e96396", + "white": "#eeebe8" + }, + "bright": { + "black": "#0d0b07", + "red": "#929ff7", + "green": "#f391b6", + "yellow": "#f6b1cc", + "blue": "#f5d8a8", + "magenta": "#1ed2ba", + "cyan": "#f3cd91", + "white": "#f9f8f6" + } + } + }, + { + "name": "Base4Tone Modern N", + "colors": { + "primary": { + "background": "#1a2023", + "foreground": "#8a9da8" + }, + "normal": { + "black": "#1a2023", + "red": "#d53975", + "green": "#a48f04", + "yellow": "#dcc218", + "blue": "#47b5f5", + "magenta": "#8493f6", + "cyan": "#c1aa15", + "white": "#e8ebee" + }, + "bright": { + "black": "#070b0d", + "red": "#eb75a2", + "green": "#e6ca1a", + "yellow": "#f2e58c", + "blue": "#bbe4fb", + "magenta": "#a0acf8", + "cyan": "#b1e0fb", + "white": "#f6f8f9" + } + } + }, + { + "name": "Base4Tone Modern W", + "colors": { + "primary": { + "background": "#201d1e", + "foreground": "#9e9498" + }, + "normal": { + "black": "#201d1e", + "red": "#21a00d", + "green": "#1398aa", + "yellow": "#3ccadd", + "blue": "#eb75a2", + "magenta": "#e97263", + "cyan": "#23b4c7", + "white": "#ede8ea" + }, + "bright": { + "black": "#0d080a", + "red": "#39c723", + "green": "#5ad2e2", + "yellow": "#a4e6ef", + "blue": "#f8bfd5", + "magenta": "#f18c7e", + "cyan": "#f6b1cc", + "white": "#f9f6f7" + } + } + }, + { + "name": "Belafonte Day", + "colors": { + "primary": { + "background": "#D5CCBA", + "foreground": "#45373C" + }, + "normal": { + "black": "#20111B", + "red": "#BE100E", + "green": "#858162", + "yellow": "#EAA549", + "blue": "#426A79", + "magenta": "#97522C", + "cyan": "#989A9C", + "white": "#968C83" + }, + "bright": { + "black": "#5E5252", + "red": "#BE100E", + "green": "#858162", + "yellow": "#EAA549", + "blue": "#426A79", + "magenta": "#97522C", + "cyan": "#989A9C", + "white": "#D5CCBA" + } + } + }, + { + "name": "Belafonte Night", + "colors": { + "primary": { + "background": "#20111B", + "foreground": "#968C83" + }, + "normal": { + "black": "#20111B", + "red": "#BE100E", + "green": "#858162", + "yellow": "#EAA549", + "blue": "#426A79", + "magenta": "#97522C", + "cyan": "#989A9C", + "white": "#968C83" + }, + "bright": { + "black": "#5E5252", + "red": "#BE100E", + "green": "#858162", + "yellow": "#EAA549", + "blue": "#426A79", + "magenta": "#97522C", + "cyan": "#989A9C", + "white": "#D5CCBA" + } + } + }, + { + "name": "Bim", + "colors": { + "primary": { + "background": "#012849", + "foreground": "#A9BED8" + }, + "normal": { + "black": "#2C2423", + "red": "#F557A0", + "green": "#A9EE55", + "yellow": "#F5A255", + "blue": "#5EA2EC", + "magenta": "#A957EC", + "cyan": "#5EEEA0", + "white": "#918988" + }, + "bright": { + "black": "#918988", + "red": "#F579B2", + "green": "#BBEE78", + "yellow": "#F5B378", + "blue": "#81B3EC", + "magenta": "#BB79EC", + "cyan": "#81EEB2", + "white": "#F5EEEC" + } + } + }, + { + "name": "Birds Of Paradise", + "colors": { + "primary": { + "background": "#2A1F1D", + "foreground": "#E0DBB7" + }, + "normal": { + "black": "#573D26", + "red": "#BE2D26", + "green": "#6BA18A", + "yellow": "#E99D2A", + "blue": "#5A86AD", + "magenta": "#AC80A6", + "cyan": "#74A6AD", + "white": "#E0DBB7" + }, + "bright": { + "black": "#9B6C4A", + "red": "#E84627", + "green": "#95D8BA", + "yellow": "#D0D150", + "blue": "#B8D3ED", + "magenta": "#D19ECB", + "cyan": "#93CFD7", + "white": "#FFF9D5" + } + } + }, + { + "name": "Blazer", + "colors": { + "primary": { + "background": "#0D1926", + "foreground": "#D9E6F2" + }, + "normal": { + "black": "#000000", + "red": "#B87A7A", + "green": "#7AB87A", + "yellow": "#B8B87A", + "blue": "#7A7AB8", + "magenta": "#B87AB8", + "cyan": "#7AB8B8", + "white": "#D9D9D9" + }, + "bright": { + "black": "#262626", + "red": "#DBBDBD", + "green": "#BDDBBD", + "yellow": "#DBDBBD", + "blue": "#BDBDDB", + "magenta": "#DBBDDB", + "cyan": "#BDDBDB", + "white": "#FFFFFF" + } + } + }, + { + "name": "Blue Dolphin", + "colors": { + "primary": { + "background": "#006984", + "foreground": "#C5F2FF" + }, + "normal": { + "black": "#292D3E", + "red": "#FF8288", + "green": "#B4E88D", + "yellow": "#F4D69F", + "blue": "#82AAFF", + "magenta": "#E9C1FF", + "cyan": "#89EBFF", + "white": "#D0D0D0" + }, + "bright": { + "black": "#434758", + "red": "#FF8B92", + "green": "#DDFFA7", + "yellow": "#FFE585", + "blue": "#9CC4FF", + "magenta": "#DDB0F6", + "cyan": "#A3F7FF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Bluloco Light", + "colors": { + "primary": { + "background": "#F9F9F9", + "foreground": "#383A42" + }, + "normal": { + "black": "#D5D6DD", + "red": "#D52753", + "green": "#23974A", + "yellow": "#DF631C", + "blue": "#275FE4", + "magenta": "#823FF1", + "cyan": "#27618D", + "white": "#000000" + }, + "bright": { + "black": "#E4E5ED", + "red": "#FF6480", + "green": "#3CBC66", + "yellow": "#C5A332", + "blue": "#0099E1", + "magenta": "#CE33C0", + "cyan": "#6D93BB", + "white": "#26272D" + } + } + }, + { + "name": "Bluloco Zsh Light", + "colors": { + "primary": { + "background": "#F9F9F9", + "foreground": "#383A42" + }, + "normal": { + "black": "#E4E5F1", + "red": "#D52753", + "green": "#23974A", + "yellow": "#DF631C", + "blue": "#275FE4", + "magenta": "#823FF1", + "cyan": "#27618D", + "white": "#000000" + }, + "bright": { + "black": "#5794DE", + "red": "#FF6480", + "green": "#3CBC66", + "yellow": "#C5A332", + "blue": "#0099E1", + "magenta": "#CE33C0", + "cyan": "#6D93BB", + "white": "#26272D" + } + } + }, + { + "name": "Borland", + "colors": { + "primary": { + "background": "#0000A4", + "foreground": "#FFFF4E" + }, + "normal": { + "black": "#4F4F4F", + "red": "#FF6C60", + "green": "#A8FF60", + "yellow": "#FFFFB6", + "blue": "#96CBFE", + "magenta": "#FF73FD", + "cyan": "#C6C5FE", + "white": "#EEEEEE" + }, + "bright": { + "black": "#7C7C7C", + "red": "#FFB6B0", + "green": "#CEFFAC", + "yellow": "#FFFFCC", + "blue": "#B5DCFF", + "magenta": "#FF9CFE", + "cyan": "#DFDFFE", + "white": "#FFFFFF" + } + } + }, + { + "name": "Breadog", + "colors": { + "primary": { + "background": "#F1EBE6", + "foreground": "#362C24" + }, + "normal": { + "black": "#362C24", + "red": "#B10B00", + "green": "#007232", + "yellow": "#8B4C00", + "blue": "#005CB4", + "magenta": "#9B0097", + "cyan": "#006A78", + "white": "#D4C3B7" + }, + "bright": { + "black": "#514337", + "red": "#DE1100", + "green": "#008F40", + "yellow": "#AE6000", + "blue": "#0074E1", + "magenta": "#C300BD", + "cyan": "#008697", + "white": "#EAE1DA" + } + } + }, + { + "name": "Breath Darker", + "colors": { + "primary": { + "background": "#080D14", + "foreground": "#17A88B" + }, + "normal": { + "black": "#1E2229", + "red": "#ED1515", + "green": "#44853A", + "yellow": "#F67400", + "blue": "#1D99F3", + "magenta": "#9B59B6", + "cyan": "#1ABC9C", + "white": "#FCFCFC" + }, + "bright": { + "black": "#7F8C8D", + "red": "#C0392B", + "green": "#55A649", + "yellow": "#FDBC4B", + "blue": "#3DAEE9", + "magenta": "#8E44AD", + "cyan": "#16A085", + "white": "#FFFFFF" + } + } + }, + { + "name": "Breath Light", + "colors": { + "primary": { + "background": "#E8E8E8", + "foreground": "#292F34" + }, + "normal": { + "black": "#E8E8E8", + "red": "#ED1515", + "green": "#C0392B", + "yellow": "#F67400", + "blue": "#1D99F3", + "magenta": "#9B59B6", + "cyan": "#1ABC9C", + "white": "#FCFCFC" + }, + "bright": { + "black": "#7F8C8D", + "red": "#C0392B", + "green": "#55A649", + "yellow": "#FDBC4B", + "blue": "#3DAEE9", + "magenta": "#8E44AD", + "cyan": "#16A085", + "white": "#FFFFFF" + } + } + }, + { + "name": "Breath Silverfox", + "colors": { + "primary": { + "background": "#1E2229", + "foreground": "#BBBBBB" + }, + "normal": { + "black": "#1E2229", + "red": "#ED1515", + "green": "#44853A", + "yellow": "#F67400", + "blue": "#1D99F3", + "magenta": "#9B59B6", + "cyan": "#1ABC9C", + "white": "#FCFCFC" + }, + "bright": { + "black": "#7F8C8D", + "red": "#C0392B", + "green": "#55A649", + "yellow": "#FDBC4B", + "blue": "#3DAEE9", + "magenta": "#8E44AD", + "cyan": "#16A085", + "white": "#FFFFFF" + } + } + }, + { + "name": "Breath", + "colors": { + "primary": { + "background": "#1E2229", + "foreground": "#17A88B" + }, + "normal": { + "black": "#1E2229", + "red": "#ED1515", + "green": "#44853A", + "yellow": "#F67400", + "blue": "#1D99F3", + "magenta": "#9B59B6", + "cyan": "#1ABC9C", + "white": "#FCFCFC" + }, + "bright": { + "black": "#7F8C8D", + "red": "#C0392B", + "green": "#55A649", + "yellow": "#FDBC4B", + "blue": "#3DAEE9", + "magenta": "#8E44AD", + "cyan": "#16A085", + "white": "#FFFFFF" + } + } + }, + { + "name": "Breeze", + "colors": { + "primary": { + "background": "#232627", + "foreground": "#FCFCFC" + }, + "normal": { + "black": "#232627", + "red": "#ED1515", + "green": "#11D116", + "yellow": "#F67400", + "blue": "#1D99F3", + "magenta": "#9B59B6", + "cyan": "#1ABC9C", + "white": "#FCFCFC" + }, + "bright": { + "black": "#7F8C8D", + "red": "#C0392B", + "green": "#1CDC9A", + "yellow": "#FDBC4B", + "blue": "#3DAEE9", + "magenta": "#8E44AD", + "cyan": "#16A085", + "white": "#FFFFFF" + } + } + }, + { + "name": "Broadcast", + "colors": { + "primary": { + "background": "#2B2B2B", + "foreground": "#E6E1DC" + }, + "normal": { + "black": "#000000", + "red": "#DA4939", + "green": "#519F50", + "yellow": "#FFD24A", + "blue": "#6D9CBE", + "magenta": "#D0D0FF", + "cyan": "#6E9CBE", + "white": "#FFFFFF" + }, + "bright": { + "black": "#323232", + "red": "#FF7B6B", + "green": "#83D182", + "yellow": "#FFFF7C", + "blue": "#9FCEF0", + "magenta": "#FFFFFF", + "cyan": "#A0CEF0", + "white": "#FFFFFF" + } + } + }, + { + "name": "Brogrammer", + "colors": { + "primary": { + "background": "#131313", + "foreground": "#D6DBE5" + }, + "normal": { + "black": "#1F1F1F", + "red": "#F81118", + "green": "#2DC55E", + "yellow": "#ECBA0F", + "blue": "#2A84D2", + "magenta": "#4E5AB7", + "cyan": "#1081D6", + "white": "#D6DBE5" + }, + "bright": { + "black": "#D6DBE5", + "red": "#DE352E", + "green": "#1DD361", + "yellow": "#F3BD09", + "blue": "#1081D6", + "magenta": "#5350B9", + "cyan": "#0F7DDB", + "white": "#FFFFFF" + } + } + }, + { + "name": "Butrin", + "colors": { + "primary": { + "background": "#4B3B3C", + "foreground": "#F2F2F2" + }, + "normal": { + "black": "#8C7E78", + "red": "#E68A8A", + "green": "#99CC99", + "yellow": "#FAD7A0", + "blue": "#6699CC", + "magenta": "#C8A2C8", + "cyan": "#6FC3B2", + "white": "#E2CEBE" + }, + "bright": { + "black": "#BFACA4", + "red": "#F2B1B1", + "green": "#B2D8B2", + "yellow": "#F7DCB4", + "blue": "#87CEFA", + "magenta": "#D8BFD8", + "cyan": "#64DBDB", + "white": "#F2F2F2" + } + } + }, + { + "name": "C64", + "colors": { + "primary": { + "background": "#40318D", + "foreground": "#7869C4" + }, + "normal": { + "black": "#090300", + "red": "#883932", + "green": "#55A049", + "yellow": "#BFCE72", + "blue": "#40318D", + "magenta": "#8B3F96", + "cyan": "#67B6BD", + "white": "#FFFFFF" + }, + "bright": { + "black": "#000000", + "red": "#883932", + "green": "#55A049", + "yellow": "#BFCE72", + "blue": "#40318D", + "magenta": "#8B3F96", + "cyan": "#67B6BD", + "white": "#F7F7F7" + } + } + }, + { + "name": "Cai", + "colors": { + "primary": { + "background": "#09111A", + "foreground": "#D9E6F2" + }, + "normal": { + "black": "#000000", + "red": "#CA274D", + "green": "#4DCA27", + "yellow": "#CAA427", + "blue": "#274DCA", + "magenta": "#A427CA", + "cyan": "#27CAA4", + "white": "#808080" + }, + "bright": { + "black": "#808080", + "red": "#E98DA3", + "green": "#A3E98D", + "yellow": "#E9D48D", + "blue": "#8DA3E9", + "magenta": "#D48DE9", + "cyan": "#8DE9D4", + "white": "#FFFFFF" + } + } + }, + { + "name": "Campbell", + "colors": { + "primary": { + "background": "#0C0C0C", + "foreground": "#CCCCCC" + }, + "normal": { + "black": "#0C0C0C", + "red": "#C50F1F", + "green": "#13A10E", + "yellow": "#C19C00", + "blue": "#0037DA", + "magenta": "#881798", + "cyan": "#3A96DD", + "white": "#CCCCCC" + }, + "bright": { + "black": "#767676", + "red": "#E74856", + "green": "#16C60C", + "yellow": "#F9F1A5", + "blue": "#3B78FF", + "magenta": "#B4009E", + "cyan": "#61D6D6", + "white": "#F2F2F2" + } + } + }, + { + "name": "Catppuccin Frapp\u00e9", + "colors": { + "primary": { + "background": "#303446", + "foreground": "#C6D0F5" + }, + "normal": { + "black": "#51576D", + "red": "#E78284", + "green": "#A6D189", + "yellow": "#E5C890", + "blue": "#8CAAEE", + "magenta": "#F4B8E4", + "cyan": "#81C8BE", + "white": "#B5BFE2" + }, + "bright": { + "black": "#626880", + "red": "#E78284", + "green": "#A6D189", + "yellow": "#E5C890", + "blue": "#8CAAEE", + "magenta": "#F4B8E4", + "cyan": "#81C8BE", + "white": "#A5ADCE" + } + } + }, + { + "name": "Catppuccin Latte", + "colors": { + "primary": { + "background": "#EFF1F5", + "foreground": "#4C4F69" + }, + "normal": { + "black": "#5C5F77", + "red": "#D20F39", + "green": "#40A02B", + "yellow": "#DF8E1D", + "blue": "#1E66F5", + "magenta": "#EA76CB", + "cyan": "#179299", + "white": "#ACB0BE" + }, + "bright": { + "black": "#6C6F85", + "red": "#D20F39", + "green": "#40A02B", + "yellow": "#DF8E1D", + "blue": "#1E66F5", + "magenta": "#EA76CB", + "cyan": "#179299", + "white": "#BCC0CC" + } + } + }, + { + "name": "Catppuccin Macchiato", + "colors": { + "primary": { + "background": "#24273A", + "foreground": "#CAD3F5" + }, + "normal": { + "black": "#494D64", + "red": "#ED8796", + "green": "#A6DA95", + "yellow": "#EED49F", + "blue": "#8AADF4", + "magenta": "#F5BDE6", + "cyan": "#8BD5CA", + "white": "#B8C0E0" + }, + "bright": { + "black": "#5B6078", + "red": "#ED8796", + "green": "#A6DA95", + "yellow": "#EED49F", + "blue": "#8AADF4", + "magenta": "#F5BDE6", + "cyan": "#8BD5CA", + "white": "#A5ADCB" + } + } + }, + { + "name": "Catppuccin Mocha", + "colors": { + "primary": { + "background": "#1E1E2E", + "foreground": "#CDD6F4" + }, + "normal": { + "black": "#45475A", + "red": "#F38BA8", + "green": "#A6E3A1", + "yellow": "#F9E2AF", + "blue": "#89B4FA", + "magenta": "#F5C2E7", + "cyan": "#94E2D5", + "white": "#BAC2DE" + }, + "bright": { + "black": "#585B70", + "red": "#F38BA8", + "green": "#A6E3A1", + "yellow": "#F9E2AF", + "blue": "#89B4FA", + "magenta": "#F5C2E7", + "cyan": "#94E2D5", + "white": "#A6ADC8" + } + } + }, + { + "name": "Chalk", + "colors": { + "primary": { + "background": "#2D2D2D", + "foreground": "#D4D4D4" + }, + "normal": { + "black": "#646464", + "red": "#F58E8E", + "green": "#A9D3AB", + "yellow": "#FED37E", + "blue": "#7AABD4", + "magenta": "#D6ADD5", + "cyan": "#79D4D5", + "white": "#D4D4D4" + }, + "bright": { + "black": "#646464", + "red": "#F58E8E", + "green": "#A9D3AB", + "yellow": "#FED37E", + "blue": "#7AABD4", + "magenta": "#D6ADD5", + "cyan": "#79D4D5", + "white": "#D4D4D4" + } + } + }, + { + "name": "Chalkboard", + "colors": { + "primary": { + "background": "#29262F", + "foreground": "#D9E6F2" + }, + "normal": { + "black": "#000000", + "red": "#C37372", + "green": "#72C373", + "yellow": "#C2C372", + "blue": "#7372C3", + "magenta": "#C372C2", + "cyan": "#72C2C3", + "white": "#D9D9D9" + }, + "bright": { + "black": "#323232", + "red": "#DBAAAA", + "green": "#AADBAA", + "yellow": "#DADBAA", + "blue": "#AAAADB", + "magenta": "#DBAADA", + "cyan": "#AADADB", + "white": "#FFFFFF" + } + } + }, + { + "name": "Chameleon", + "colors": { + "primary": { + "background": "#2C2C2C", + "foreground": "#DEDEDE" + }, + "normal": { + "black": "#2C2C2C", + "red": "#CC231C", + "green": "#689D69", + "yellow": "#D79922", + "blue": "#366B71", + "magenta": "#4E5165", + "cyan": "#458587", + "white": "#C8BB97" + }, + "bright": { + "black": "#777777", + "red": "#CC231C", + "green": "#689D69", + "yellow": "#D79922", + "blue": "#366B71", + "magenta": "#4E5165", + "cyan": "#458587", + "white": "#C8BB97" + } + } + }, + { + "name": "Ciapre", + "colors": { + "primary": { + "background": "#191C27", + "foreground": "#AEA47A" + }, + "normal": { + "black": "#181818", + "red": "#810009", + "green": "#48513B", + "yellow": "#CC8B3F", + "blue": "#576D8C", + "magenta": "#724D7C", + "cyan": "#5C4F4B", + "white": "#AEA47F" + }, + "bright": { + "black": "#555555", + "red": "#AC3835", + "green": "#A6A75D", + "yellow": "#DCDF7C", + "blue": "#3097C6", + "magenta": "#D33061", + "cyan": "#F3DBB2", + "white": "#F4F4F4" + } + } + }, + { + "name": "City Lights", + "colors": { + "primary": { + "background": "#171D23", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#41505E", + "red": "#D95468", + "green": "#8BD49C", + "yellow": "#EBBF83", + "blue": "#539AFC", + "magenta": "#B62D65", + "cyan": "#70E1E8", + "white": "#FFFFFF" + }, + "bright": { + "black": "#41505E", + "red": "#D95468", + "green": "#8BD49C", + "yellow": "#EBBF83", + "blue": "#539AFC", + "magenta": "#B62D65", + "cyan": "#70E1E8", + "white": "#FFFFFF" + } + } + }, + { + "name": "Clone Of Ubuntu", + "colors": { + "primary": { + "background": "#300A24", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#2E3436", + "red": "#CC0000", + "green": "#4E9A06", + "yellow": "#C4A000", + "blue": "#3465A4", + "magenta": "#75507B", + "cyan": "#06989A", + "white": "#D3D7CF" + }, + "bright": { + "black": "#555753", + "red": "#EF2929", + "green": "#8AE234", + "yellow": "#FCE94F", + "blue": "#729FCF", + "magenta": "#AD7FA8", + "cyan": "#34E2E2", + "white": "#EEEEEC" + } + } + }, + { + "name": "Clrs", + "colors": { + "primary": { + "background": "#FFFFFF", + "foreground": "#262626" + }, + "normal": { + "black": "#000000", + "red": "#F8282A", + "green": "#328A5D", + "yellow": "#FA701D", + "blue": "#135CD0", + "magenta": "#9F00BD", + "cyan": "#33C3C1", + "white": "#B3B3B3" + }, + "bright": { + "black": "#555753", + "red": "#FB0416", + "green": "#2CC631", + "yellow": "#FDD727", + "blue": "#1670FF", + "magenta": "#E900B0", + "cyan": "#3AD5CE", + "white": "#EEEEEC" + } + } + }, + { + "name": "Cobalt 2", + "colors": { + "primary": { + "background": "#132738", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#FF0000", + "green": "#38DE21", + "yellow": "#FFE50A", + "blue": "#1460D2", + "magenta": "#FF005D", + "cyan": "#00BBBB", + "white": "#BBBBBB" + }, + "bright": { + "black": "#555555", + "red": "#F40E17", + "green": "#3BD01D", + "yellow": "#EDC809", + "blue": "#5555FF", + "magenta": "#FF55FF", + "cyan": "#6AE3FA", + "white": "#FFFFFF" + } + } + }, + { + "name": "Cobalt Neon", + "colors": { + "primary": { + "background": "#142838", + "foreground": "#8FF586" + }, + "normal": { + "black": "#142631", + "red": "#FF2320", + "green": "#3BA5FF", + "yellow": "#E9E75C", + "blue": "#8FF586", + "magenta": "#781AA0", + "cyan": "#8FF586", + "white": "#BA46B2" + }, + "bright": { + "black": "#FFF688", + "red": "#D4312E", + "green": "#8FF586", + "yellow": "#E9F06D", + "blue": "#3C7DD2", + "magenta": "#8230A7", + "cyan": "#6CBC67", + "white": "#8FF586" + } + } + }, + { + "name": "Colorcli", + "colors": { + "primary": { + "background": "#FFFFFF", + "foreground": "#005F87" + }, + "normal": { + "black": "#000000", + "red": "#D70000", + "green": "#5FAF00", + "yellow": "#5FAF00", + "blue": "#005F87", + "magenta": "#D70000", + "cyan": "#5F5F5F", + "white": "#E4E4E4" + }, + "bright": { + "black": "#5F5F5F", + "red": "#D70000", + "green": "#5F5F5F", + "yellow": "#FFFF00", + "blue": "#0087AF", + "magenta": "#0087AF", + "cyan": "#0087AF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Crayon Pony Fish", + "colors": { + "primary": { + "background": "#150707", + "foreground": "#68525A" + }, + "normal": { + "black": "#2B1B1D", + "red": "#91002B", + "green": "#579524", + "yellow": "#AB311B", + "blue": "#8C87B0", + "magenta": "#692F50", + "cyan": "#E8A866", + "white": "#68525A" + }, + "bright": { + "black": "#3D2B2E", + "red": "#C5255D", + "green": "#8DFF57", + "yellow": "#C8381D", + "blue": "#CFC9FF", + "magenta": "#FC6CBA", + "cyan": "#FFCEAF", + "white": "#B0949D" + } + } + }, + { + "name": "Dark Pastel", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#FF5555", + "green": "#55FF55", + "yellow": "#FFFF55", + "blue": "#5555FF", + "magenta": "#FF55FF", + "cyan": "#55FFFF", + "white": "#BBBBBB" + }, + "bright": { + "black": "#555555", + "red": "#FF5555", + "green": "#55FF55", + "yellow": "#FFFF55", + "blue": "#5555FF", + "magenta": "#FF55FF", + "cyan": "#55FFFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Darkside", + "colors": { + "primary": { + "background": "#222324", + "foreground": "#BABABA" + }, + "normal": { + "black": "#000000", + "red": "#E8341C", + "green": "#68C256", + "yellow": "#F2D42C", + "blue": "#1C98E8", + "magenta": "#8E69C9", + "cyan": "#1C98E8", + "white": "#BABABA" + }, + "bright": { + "black": "#000000", + "red": "#E05A4F", + "green": "#77B869", + "yellow": "#EFD64B", + "blue": "#387CD3", + "magenta": "#957BBE", + "cyan": "#3D97E2", + "white": "#BABABA" + } + } + }, + { + "name": "Dehydration", + "colors": { + "primary": { + "background": "#333333", + "foreground": "#CCCCCC" + }, + "normal": { + "black": "#333333", + "red": "#FF5555", + "green": "#5FD38D", + "yellow": "#FF9955", + "blue": "#3771C8", + "magenta": "#BC5FD3", + "cyan": "#5FD3BC", + "white": "#999999" + }, + "bright": { + "black": "#666666", + "red": "#FF8080", + "green": "#87DEAA", + "yellow": "#FFB380", + "blue": "#5F8DD3", + "magenta": "#CD87DE", + "cyan": "#87DECD", + "white": "#CCCCCC" + } + } + }, + { + "name": "Desert", + "colors": { + "primary": { + "background": "#333333", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#4D4D4D", + "red": "#FF2B2B", + "green": "#98FB98", + "yellow": "#F0E68C", + "blue": "#CD853F", + "magenta": "#FFDEAD", + "cyan": "#FFA0A0", + "white": "#F5DEB3" + }, + "bright": { + "black": "#555555", + "red": "#FF5555", + "green": "#55FF55", + "yellow": "#FFFF55", + "blue": "#87CEFF", + "magenta": "#FF55FF", + "cyan": "#FFD700", + "white": "#FFFFFF" + } + } + }, + { + "name": "Dimmed Monokai", + "colors": { + "primary": { + "background": "#1F1F1F", + "foreground": "#B9BCBA" + }, + "normal": { + "black": "#3A3D43", + "red": "#BE3F48", + "green": "#879A3B", + "yellow": "#C5A635", + "blue": "#4F76A1", + "magenta": "#855C8D", + "cyan": "#578FA4", + "white": "#B9BCBA" + }, + "bright": { + "black": "#888987", + "red": "#FB001F", + "green": "#0F722F", + "yellow": "#C47033", + "blue": "#186DE3", + "magenta": "#FB0067", + "cyan": "#2E706D", + "white": "#FDFFB9" + } + } + }, + { + "name": "Dissonance", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#DC322F", + "green": "#56DB3A", + "yellow": "#FF8400", + "blue": "#0084D4", + "magenta": "#B729D9", + "cyan": "#CCCCFF", + "white": "#FFFFFF" + }, + "bright": { + "black": "#D6DBE5", + "red": "#DC322F", + "green": "#56DB3A", + "yellow": "#FF8400", + "blue": "#0084D4", + "magenta": "#B729D9", + "cyan": "#CCCCFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Dracula", + "colors": { + "primary": { + "background": "#282A36", + "foreground": "#f8f8f2" + }, + "normal": { + "black": "#44475A", + "red": "#FF5555", + "green": "#50FA7B", + "yellow": "#FFB86C", + "blue": "#8BE9FD", + "magenta": "#BD93F9", + "cyan": "#FF79C6", + "white": "#f8f8f2" + }, + "bright": { + "black": "#000000", + "red": "#FF5555", + "green": "#50FA7B", + "yellow": "#FFB86C", + "blue": "#8BE9FD", + "magenta": "#BD93F9", + "cyan": "#FF79C6", + "white": "#FFFFFF" + } + } + }, + { + "name": "Earthsong", + "colors": { + "primary": { + "background": "#292520", + "foreground": "#E5C7A9" + }, + "normal": { + "black": "#121418", + "red": "#C94234", + "green": "#85C54C", + "yellow": "#F5AE2E", + "blue": "#1398B9", + "magenta": "#D0633D", + "cyan": "#509552", + "white": "#E5C6AA" + }, + "bright": { + "black": "#675F54", + "red": "#FF645A", + "green": "#98E036", + "yellow": "#E0D561", + "blue": "#5FDAFF", + "magenta": "#FF9269", + "cyan": "#84F088", + "white": "#F6F7EC" + } + } + }, + { + "name": "Elemental", + "colors": { + "primary": { + "background": "#22211D", + "foreground": "#807A74" + }, + "normal": { + "black": "#3C3C30", + "red": "#98290F", + "green": "#479A43", + "yellow": "#7F7111", + "blue": "#497F7D", + "magenta": "#7F4E2F", + "cyan": "#387F58", + "white": "#807974" + }, + "bright": { + "black": "#555445", + "red": "#E0502A", + "green": "#61E070", + "yellow": "#D69927", + "blue": "#79D9D9", + "magenta": "#CD7C54", + "cyan": "#59D599", + "white": "#FFF1E9" + } + } + }, + { + "name": "Elementary", + "colors": { + "primary": { + "background": "#101010", + "foreground": "#F2F2F2" + }, + "normal": { + "black": "#303030", + "red": "#E1321A", + "green": "#6AB017", + "yellow": "#FFC005", + "blue": "#004F9E", + "magenta": "#EC0048", + "cyan": "#2AA7E7", + "white": "#F2F2F2" + }, + "bright": { + "black": "#5D5D5D", + "red": "#FF361E", + "green": "#7BC91F", + "yellow": "#FFD00A", + "blue": "#0071FF", + "magenta": "#FF1D62", + "cyan": "#4BB8FD", + "white": "#A020F0" + } + } + }, + { + "name": "Elic", + "colors": { + "primary": { + "background": "#4A453E", + "foreground": "#F2F2F2" + }, + "normal": { + "black": "#303030", + "red": "#E1321A", + "green": "#6AB017", + "yellow": "#FFC005", + "blue": "#729FCF", + "magenta": "#EC0048", + "cyan": "#F2F2F2", + "white": "#2AA7E7" + }, + "bright": { + "black": "#5D5D5D", + "red": "#FF361E", + "green": "#7BC91F", + "yellow": "#FFD00A", + "blue": "#0071FF", + "magenta": "#FF1D62", + "cyan": "#4BB8FD", + "white": "#A020F0" + } + } + }, + { + "name": "Elio", + "colors": { + "primary": { + "background": "#041A3B", + "foreground": "#F2F2F2" + }, + "normal": { + "black": "#303030", + "red": "#E1321A", + "green": "#6AB017", + "yellow": "#FFC005", + "blue": "#729FCF", + "magenta": "#EC0048", + "cyan": "#2AA7E7", + "white": "#F2F2F2" + }, + "bright": { + "black": "#5D5D5D", + "red": "#FF361E", + "green": "#7BC91F", + "yellow": "#FFD00A", + "blue": "#0071FF", + "magenta": "#FF1D62", + "cyan": "#4BB8FD", + "white": "#A020F0" + } + } + }, + { + "name": "Espresso Libre", + "colors": { + "primary": { + "background": "#2A211C", + "foreground": "#B8A898" + }, + "normal": { + "black": "#000000", + "red": "#CC0000", + "green": "#1A921C", + "yellow": "#F0E53A", + "blue": "#0066FF", + "magenta": "#C5656B", + "cyan": "#06989A", + "white": "#D3D7CF" + }, + "bright": { + "black": "#555753", + "red": "#EF2929", + "green": "#9AFF87", + "yellow": "#FFFB5C", + "blue": "#43A8ED", + "magenta": "#FF818A", + "cyan": "#34E2E2", + "white": "#EEEEEC" + } + } + }, + { + "name": "Espresso", + "colors": { + "primary": { + "background": "#323232", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#353535", + "red": "#D25252", + "green": "#A5C261", + "yellow": "#FFC66D", + "blue": "#6C99BB", + "magenta": "#D197D9", + "cyan": "#BED6FF", + "white": "#EEEEEC" + }, + "bright": { + "black": "#535353", + "red": "#F00C0C", + "green": "#C2E075", + "yellow": "#E1E48B", + "blue": "#8AB7D9", + "magenta": "#EFB5F7", + "cyan": "#DCF4FF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Everblush", + "colors": { + "primary": { + "background": "#141B1E", + "foreground": "#DADADA" + }, + "normal": { + "black": "#232A2D", + "red": "#E57474", + "green": "#8CCF7E", + "yellow": "#E5C76B", + "blue": "#67B0E8", + "magenta": "#C47FD5", + "cyan": "#6CBFBF", + "white": "#B3B9B8" + }, + "bright": { + "black": "#2D3437", + "red": "#EF7E7E", + "green": "#96D988", + "yellow": "#F4D67A", + "blue": "#71BAF2", + "magenta": "#CE89DF", + "cyan": "#67CBE7", + "white": "#BDC3C2" + } + } + }, + { + "name": "Everforest Dark Hard", + "colors": { + "primary": { + "background": "#272E33", + "foreground": "#D3C6AA" + }, + "normal": { + "black": "#2E383C", + "red": "#E67E80", + "green": "#A7C080", + "yellow": "#DBBC7F", + "blue": "#7FBBB3", + "magenta": "#D699B6", + "cyan": "#83C092", + "white": "#D3C6AA" + }, + "bright": { + "black": "#5C6A72", + "red": "#F85552", + "green": "#8DA101", + "yellow": "#DFA000", + "blue": "#3A94C5", + "magenta": "#DF69BA", + "cyan": "#35A77C", + "white": "#DFDDC8" + } + } + }, + { + "name": "Everforest Dark Medium", + "colors": { + "primary": { + "background": "#2D353B", + "foreground": "#D3C6AA" + }, + "normal": { + "black": "#343F44", + "red": "#E67E80", + "green": "#A7C080", + "yellow": "#DBBC7F", + "blue": "#7FBBB3", + "magenta": "#D699B6", + "cyan": "#83C092", + "white": "#D3C6AA" + }, + "bright": { + "black": "#5C6A72", + "red": "#F85552", + "green": "#8DA101", + "yellow": "#DFA000", + "blue": "#3A94C5", + "magenta": "#DF69BA", + "cyan": "#35A77C", + "white": "#DFDDC8" + } + } + }, + { + "name": "Everforest Dark Soft", + "colors": { + "primary": { + "background": "#333C43", + "foreground": "#D3C6AA" + }, + "normal": { + "black": "#3A464C", + "red": "#E67E80", + "green": "#A7C080", + "yellow": "#DBBC7F", + "blue": "#7FBBB3", + "magenta": "#D699B6", + "cyan": "#83C092", + "white": "#D3C6AA" + }, + "bright": { + "black": "#5C6A72", + "red": "#F85552", + "green": "#8DA101", + "yellow": "#DFA000", + "blue": "#3A94C5", + "magenta": "#DF69BA", + "cyan": "#35A77C", + "white": "#DFDDC8" + } + } + }, + { + "name": "Everforest Light Hard", + "colors": { + "primary": { + "background": "#FFFBEF", + "foreground": "#5C6A72" + }, + "normal": { + "black": "#5C6A72", + "red": "#F85552", + "green": "#8DA101", + "yellow": "#DFA000", + "blue": "#3A94C5", + "magenta": "#DF69BA", + "cyan": "#35A77C", + "white": "#DFDDC8" + }, + "bright": { + "black": "#2E383C", + "red": "#E67E80", + "green": "#A7C080", + "yellow": "#DBBC7F", + "blue": "#7FBBB3", + "magenta": "#D699B6", + "cyan": "#83C092", + "white": "#D3C6AA" + } + } + }, + { + "name": "Everforest Light Medium", + "colors": { + "primary": { + "background": "#FDF6E3", + "foreground": "#5C6A72" + }, + "normal": { + "black": "#5C6A72", + "red": "#F85552", + "green": "#8DA101", + "yellow": "#DFA000", + "blue": "#3A94C5", + "magenta": "#DF69BA", + "cyan": "#35A77C", + "white": "#DFDDC8" + }, + "bright": { + "black": "#343F44", + "red": "#E67E80", + "green": "#A7C080", + "yellow": "#DBBC7F", + "blue": "#7FBBB3", + "magenta": "#D699B6", + "cyan": "#83C092", + "white": "#D3C6AA" + } + } + }, + { + "name": "Everforest Light Soft", + "colors": { + "primary": { + "background": "#F3EAD3", + "foreground": "#5C6A72" + }, + "normal": { + "black": "#5C6A72", + "red": "#F85552", + "green": "#8DA101", + "yellow": "#DFA000", + "blue": "#3A94C5", + "magenta": "#DF69BA", + "cyan": "#35A77C", + "white": "#DFDDC8" + }, + "bright": { + "black": "#3A464C", + "red": "#E67E80", + "green": "#A7C080", + "yellow": "#DBBC7F", + "blue": "#7FBBB3", + "magenta": "#D699B6", + "cyan": "#83C092", + "white": "#D3C6AA" + } + } + }, + { + "name": "Fairy Floss Dark", + "colors": { + "primary": { + "background": "#42395D", + "foreground": "#C2FFDF" + }, + "normal": { + "black": "#42395D", + "red": "#A8757B", + "green": "#FF857F", + "yellow": "#E6C000", + "blue": "#AE81FF", + "magenta": "#716799", + "cyan": "#C2FFDF", + "white": "#F8F8F2" + }, + "bright": { + "black": "#75507B", + "red": "#FFB8D1", + "green": "#F1568E", + "yellow": "#D5A425", + "blue": "#C5A3FF", + "magenta": "#8077A8", + "cyan": "#C2FFFF", + "white": "#F8F8F0" + } + } + }, + { + "name": "Fairy Floss", + "colors": { + "primary": { + "background": "#5A5475", + "foreground": "#C2FFDF" + }, + "normal": { + "black": "#42395D", + "red": "#A8757B", + "green": "#FF857F", + "yellow": "#E6C000", + "blue": "#AE81FF", + "magenta": "#716799", + "cyan": "#C2FFDF", + "white": "#F8F8F2" + }, + "bright": { + "black": "#75507B", + "red": "#FFB8D1", + "green": "#F1568E", + "yellow": "#D5A425", + "blue": "#C5A3FF", + "magenta": "#8077A8", + "cyan": "#C2FFFF", + "white": "#F8F8F0" + } + } + }, + { + "name": "Fishtank", + "colors": { + "primary": { + "background": "#232537", + "foreground": "#ECF0FE" + }, + "normal": { + "black": "#03073C", + "red": "#C6004A", + "green": "#ACF157", + "yellow": "#FECD5E", + "blue": "#525FB8", + "magenta": "#986F82", + "cyan": "#968763", + "white": "#ECF0FC" + }, + "bright": { + "black": "#6C5B30", + "red": "#DA4B8A", + "green": "#DBFFA9", + "yellow": "#FEE6A9", + "blue": "#B2BEFA", + "magenta": "#FDA5CD", + "cyan": "#A5BD86", + "white": "#F6FFEC" + } + } + }, + { + "name": "Flat Remix", + "colors": { + "primary": { + "background": "#272A34", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#1F2229", + "red": "#D41919", + "green": "#5EBDAB", + "yellow": "#FEA44C", + "blue": "#367BF0", + "magenta": "#BF2E5D", + "cyan": "#49AEE6", + "white": "#E6E6E6" + }, + "bright": { + "black": "#8C42AB", + "red": "#EC0101", + "green": "#47D4B9", + "yellow": "#FF8A18", + "blue": "#277FFF", + "magenta": "#D71655", + "cyan": "#05A1F7", + "white": "#FFFFFF" + } + } + }, + { + "name": "Flat", + "colors": { + "primary": { + "background": "#1F2D3A", + "foreground": "#1ABC9C" + }, + "normal": { + "black": "#2C3E50", + "red": "#C0392B", + "green": "#27AE60", + "yellow": "#F39C12", + "blue": "#2980B9", + "magenta": "#8E44AD", + "cyan": "#16A085", + "white": "#BDC3C7" + }, + "bright": { + "black": "#34495E", + "red": "#E74C3C", + "green": "#2ECC71", + "yellow": "#F1C40F", + "blue": "#3498DB", + "magenta": "#9B59B6", + "cyan": "#2AA198", + "white": "#ECF0F1" + } + } + }, + { + "name": "Flatland", + "colors": { + "primary": { + "background": "#1D1F21", + "foreground": "#B8DBEF" + }, + "normal": { + "black": "#1D1D19", + "red": "#F18339", + "green": "#9FD364", + "yellow": "#F4EF6D", + "blue": "#5096BE", + "magenta": "#695ABC", + "cyan": "#D63865", + "white": "#FFFFFF" + }, + "bright": { + "black": "#1D1D19", + "red": "#D22A24", + "green": "#A7D42C", + "yellow": "#FF8949", + "blue": "#61B9D0", + "magenta": "#695ABC", + "cyan": "#D63865", + "white": "#FFFFFF" + } + } + }, + { + "name": "Flexoki Dark", + "colors": { + "primary": { + "background": "#100F0F", + "foreground": "#878580" + }, + "normal": { + "black": "#282726", + "red": "#AF3029", + "green": "#66800B", + "yellow": "#AD8301", + "blue": "#205EA6", + "magenta": "#A02F6F", + "cyan": "#24837B", + "white": "#E6E4D9" + }, + "bright": { + "black": "#343331", + "red": "#D14D41", + "green": "#879A39", + "yellow": "#D0A215", + "blue": "#4385BE", + "magenta": "#CE5D97", + "cyan": "#3AA99F", + "white": "#FFFCF0" + } + } + }, + { + "name": "Flexoki Light", + "colors": { + "primary": { + "background": "#FFFCF0", + "foreground": "#100F0F" + }, + "normal": { + "black": "#282726", + "red": "#AF3029", + "green": "#66800B", + "yellow": "#AD8301", + "blue": "#205EA6", + "magenta": "#A02F6F", + "cyan": "#24837B", + "white": "#878580" + }, + "bright": { + "black": "#1C1B1A", + "red": "#D14D41", + "green": "#879A39", + "yellow": "#D0A215", + "blue": "#4385BE", + "magenta": "#CE5D97", + "cyan": "#3AA99F", + "white": "#6F6E69" + } + } + }, + { + "name": "Foxnightly", + "colors": { + "primary": { + "background": "#2A2A2E", + "foreground": "#D7D7DB" + }, + "normal": { + "black": "#2A2A2E", + "red": "#B98EFF", + "green": "#FF7DE9", + "yellow": "#729FCF", + "blue": "#66A05B", + "magenta": "#75507B", + "cyan": "#ACACAE", + "white": "#FFFFFF" + }, + "bright": { + "black": "#A40000", + "red": "#BF4040", + "green": "#66A05B", + "yellow": "#FFB86C", + "blue": "#729FCF", + "magenta": "#8F5902", + "cyan": "#C4A000", + "white": "#5C3566" + } + } + }, + { + "name": "Freya", + "colors": { + "primary": { + "background": "#252E32", + "foreground": "#94A3A5" + }, + "normal": { + "black": "#073642", + "red": "#DC322F", + "green": "#859900", + "yellow": "#B58900", + "blue": "#268BD2", + "magenta": "#EC0048", + "cyan": "#2AA198", + "white": "#94A3A5" + }, + "bright": { + "black": "#586E75", + "red": "#CB4B16", + "green": "#859900", + "yellow": "#B58900", + "blue": "#268BD2", + "magenta": "#D33682", + "cyan": "#2AA198", + "white": "#6C71C4" + } + } + }, + { + "name": "Frontend Delight", + "colors": { + "primary": { + "background": "#1B1C1D", + "foreground": "#ADADAD" + }, + "normal": { + "black": "#242526", + "red": "#F8511B", + "green": "#565747", + "yellow": "#FA771D", + "blue": "#2C70B7", + "magenta": "#F02E4F", + "cyan": "#3CA1A6", + "white": "#ADADAD" + }, + "bright": { + "black": "#5FAC6D", + "red": "#F74319", + "green": "#74EC4C", + "yellow": "#FDC325", + "blue": "#3393CA", + "magenta": "#E75E4F", + "cyan": "#4FBCE6", + "white": "#8C735B" + } + } + }, + { + "name": "Frontend Fun Forrest", + "colors": { + "primary": { + "background": "#251200", + "foreground": "#DEC165" + }, + "normal": { + "black": "#000000", + "red": "#D6262B", + "green": "#919C00", + "yellow": "#BE8A13", + "blue": "#4699A3", + "magenta": "#8D4331", + "cyan": "#DA8213", + "white": "#DDC265" + }, + "bright": { + "black": "#7F6A55", + "red": "#E55A1C", + "green": "#BFC65A", + "yellow": "#FFCB1B", + "blue": "#7CC9CF", + "magenta": "#D26349", + "cyan": "#E6A96B", + "white": "#FFEAA3" + } + } + }, + { + "name": "Frontend Galaxy", + "colors": { + "primary": { + "background": "#1D2837", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#F9555F", + "green": "#21B089", + "yellow": "#FEF02A", + "blue": "#589DF6", + "magenta": "#944D95", + "cyan": "#1F9EE7", + "white": "#BBBBBB" + }, + "bright": { + "black": "#555555", + "red": "#FA8C8F", + "green": "#35BB9A", + "yellow": "#FFFF55", + "blue": "#589DF6", + "magenta": "#E75699", + "cyan": "#3979BC", + "white": "#FFFFFF" + } + } + }, + { + "name": "Geohot", + "colors": { + "primary": { + "background": "#1F1E1F", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#F9F5F5", + "red": "#CC0000", + "green": "#1F1E1F", + "yellow": "#ADA110", + "blue": "#FF004E", + "magenta": "#75507B", + "cyan": "#06919A", + "white": "#FFFFFF" + }, + "bright": { + "black": "#555753", + "red": "#EF2929", + "green": "#FF0000", + "yellow": "#ADA110", + "blue": "#5F4AA6", + "magenta": "#B74438", + "cyan": "#408F0C", + "white": "#FFFFFF" + } + } + }, + { + "name": "Github Dark", + "colors": { + "primary": { + "background": "#101216", + "foreground": "#8B949E" + }, + "normal": { + "black": "#000000", + "red": "#F78166", + "green": "#56D364", + "yellow": "#E3B341", + "blue": "#6CA4F8", + "magenta": "#DB61A2", + "cyan": "#2B7489", + "white": "#FFFFFF" + }, + "bright": { + "black": "#4D4D4D", + "red": "#F78166", + "green": "#56D364", + "yellow": "#E3B341", + "blue": "#6CA4F8", + "magenta": "#DB61A2", + "cyan": "#2B7489", + "white": "#FFFFFF" + } + } + }, + { + "name": "Github Light", + "colors": { + "primary": { + "background": "#f6f8fa", + "foreground": "#1f2328" + }, + "normal": { + "black": "#24292f", + "red": "#cf222e", + "green": "#1a7f37", + "yellow": "#9a6700", + "blue": "#0969da", + "magenta": "#8250df", + "cyan": "#1b7c83", + "white": "#6e7781" + }, + "bright": { + "black": "#57606a", + "red": "#a40e26", + "green": "#2da44e", + "yellow": "#bf8700", + "blue": "#218bff", + "magenta": "#a475f9", + "cyan": "#3192aa", + "white": "#8c959f" + } + } + }, + { + "name": "Gogh", + "colors": { + "primary": { + "background": "#292D3E", + "foreground": "#BFC7D5" + }, + "normal": { + "black": "#292D3E", + "red": "#F07178", + "green": "#62DE84", + "yellow": "#FFCB6B", + "blue": "#75A1FF", + "magenta": "#F580FF", + "cyan": "#60BAEC", + "white": "#ABB2BF" + }, + "bright": { + "black": "#959DCB", + "red": "#F07178", + "green": "#C3E88D", + "yellow": "#FF5572", + "blue": "#82AAFF", + "magenta": "#FFCB6B", + "cyan": "#676E95", + "white": "#FFFEFE" + } + } + }, + { + "name": "Gooey", + "colors": { + "primary": { + "background": "#0D101B", + "foreground": "#EBEEF9" + }, + "normal": { + "black": "#000009", + "red": "#BB4F6C", + "green": "#72CCAE", + "yellow": "#C65E3D", + "blue": "#58B6CA", + "magenta": "#6488C4", + "cyan": "#8D84C6", + "white": "#858893" + }, + "bright": { + "black": "#1F222D", + "red": "#EE829F", + "green": "#A5FFE1", + "yellow": "#F99170", + "blue": "#8BE9FD", + "magenta": "#97BBF7", + "cyan": "#C0B7F9", + "white": "#FFFFFF" + } + } + }, + { + "name": "Google Dark", + "colors": { + "primary": { + "background": "#202124", + "foreground": "#E8EAED" + }, + "normal": { + "black": "#202124", + "red": "#EA4335", + "green": "#34A853", + "yellow": "#FBBC04", + "blue": "#4285F4", + "magenta": "#A142F4", + "cyan": "#24C1E0", + "white": "#E8EAED" + }, + "bright": { + "black": "#5F6368", + "red": "#EA4335", + "green": "#34A853", + "yellow": "#FBBC05", + "blue": "#4285F4", + "magenta": "#A142F4", + "cyan": "#24C1E0", + "white": "#FFFFFF" + } + } + }, + { + "name": "Google Light", + "colors": { + "primary": { + "background": "#FFFFFF", + "foreground": "#5F6368" + }, + "normal": { + "black": "#202124", + "red": "#EA4335", + "green": "#34A853", + "yellow": "#FBBC04", + "blue": "#4285F4", + "magenta": "#A142F4", + "cyan": "#24C1E0", + "white": "#E8EAED" + }, + "bright": { + "black": "#5F6368", + "red": "#EA4335", + "green": "#34A853", + "yellow": "#FBBC05", + "blue": "#4285F4", + "magenta": "#A142F4", + "cyan": "#24C1E0", + "white": "#FFFFFF" + } + } + }, + { + "name": "Gotham", + "colors": { + "primary": { + "background": "#0A0F14", + "foreground": "#98D1CE" + }, + "normal": { + "black": "#0A0F14", + "red": "#C33027", + "green": "#26A98B", + "yellow": "#EDB54B", + "blue": "#195465", + "magenta": "#4E5165", + "cyan": "#33859D", + "white": "#98D1CE" + }, + "bright": { + "black": "#10151B", + "red": "#D26939", + "green": "#081F2D", + "yellow": "#245361", + "blue": "#093748", + "magenta": "#888BA5", + "cyan": "#599CAA", + "white": "#D3EBE9" + } + } + }, + { + "name": "Grape", + "colors": { + "primary": { + "background": "#171423", + "foreground": "#9F9FA1" + }, + "normal": { + "black": "#2D283F", + "red": "#ED2261", + "green": "#1FA91B", + "yellow": "#8DDC20", + "blue": "#487DF4", + "magenta": "#8D35C9", + "cyan": "#3BDEED", + "white": "#9E9EA0" + }, + "bright": { + "black": "#59516A", + "red": "#F0729A", + "green": "#53AA5E", + "yellow": "#B2DC87", + "blue": "#A9BCEC", + "magenta": "#AD81C2", + "cyan": "#9DE3EB", + "white": "#A288F7" + } + } + }, + { + "name": "Grass", + "colors": { + "primary": { + "background": "#13773D", + "foreground": "#FFF0A5" + }, + "normal": { + "black": "#000000", + "red": "#BB0000", + "green": "#00BB00", + "yellow": "#E7B000", + "blue": "#0000A3", + "magenta": "#950062", + "cyan": "#00BBBB", + "white": "#BBBBBB" + }, + "bright": { + "black": "#555555", + "red": "#BB0000", + "green": "#00BB00", + "yellow": "#E7B000", + "blue": "#0000BB", + "magenta": "#FF55FF", + "cyan": "#55FFFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Gruvbox Dark", + "colors": { + "primary": { + "background": "#282828", + "foreground": "#EBDBB2" + }, + "normal": { + "black": "#282828", + "red": "#CC241D", + "green": "#98971A", + "yellow": "#D79921", + "blue": "#458588", + "magenta": "#B16286", + "cyan": "#689D6A", + "white": "#A89984" + }, + "bright": { + "black": "#928374", + "red": "#FB4934", + "green": "#B8BB26", + "yellow": "#FABD2F", + "blue": "#83A598", + "magenta": "#D3869B", + "cyan": "#8EC07C", + "white": "#EBDBB2" + } + } + }, + { + "name": "Gruvbox Material", + "colors": { + "primary": { + "background": "#282828", + "foreground": "#D4BE98" + }, + "normal": { + "black": "#3C3836", + "red": "#EA6962", + "green": "#A9B665", + "yellow": "#D8A657", + "blue": "#7DAEA3", + "magenta": "#D3869B", + "cyan": "#89B482", + "white": "#D4BE98" + }, + "bright": { + "black": "#3C3836", + "red": "#EA6962", + "green": "#A9B665", + "yellow": "#D8A657", + "blue": "#7DAEA3", + "magenta": "#D3869B", + "cyan": "#89B482", + "white": "#D4BE98" + } + } + }, + { + "name": "Gruvbox", + "colors": { + "primary": { + "background": "#FBF1C7", + "foreground": "#3C3836" + }, + "normal": { + "black": "#FBF1C7", + "red": "#CC241D", + "green": "#98971A", + "yellow": "#D79921", + "blue": "#458588", + "magenta": "#B16286", + "cyan": "#689D6A", + "white": "#7C6F64" + }, + "bright": { + "black": "#928374", + "red": "#9D0006", + "green": "#79740E", + "yellow": "#B57614", + "blue": "#076678", + "magenta": "#8F3F71", + "cyan": "#427B58", + "white": "#3C3836" + } + } + }, + { + "name": "Hardcore", + "colors": { + "primary": { + "background": "#121212", + "foreground": "#A0A0A0" + }, + "normal": { + "black": "#1B1D1E", + "red": "#F92672", + "green": "#A6E22E", + "yellow": "#FD971F", + "blue": "#66D9EF", + "magenta": "#9E6FFE", + "cyan": "#5E7175", + "white": "#CCCCC6" + }, + "bright": { + "black": "#505354", + "red": "#FF669D", + "green": "#BEED5F", + "yellow": "#E6DB74", + "blue": "#66D9EF", + "magenta": "#9E6FFE", + "cyan": "#A3BABF", + "white": "#F8F8F2" + } + } + }, + { + "name": "Harper", + "colors": { + "primary": { + "background": "#010101", + "foreground": "#A8A49D" + }, + "normal": { + "black": "#010101", + "red": "#F8B63F", + "green": "#7FB5E1", + "yellow": "#D6DA25", + "blue": "#489E48", + "magenta": "#B296C6", + "cyan": "#F5BFD7", + "white": "#A8A49D" + }, + "bright": { + "black": "#726E6A", + "red": "#F8B63F", + "green": "#7FB5E1", + "yellow": "#D6DA25", + "blue": "#489E48", + "magenta": "#B296C6", + "cyan": "#F5BFD7", + "white": "#FEFBEA" + } + } + }, + { + "name": "Hemisu Dark", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#444444", + "red": "#FF0054", + "green": "#B1D630", + "yellow": "#9D895E", + "blue": "#67BEE3", + "magenta": "#B576BC", + "cyan": "#569A9F", + "white": "#EDEDED" + }, + "bright": { + "black": "#777777", + "red": "#D65E75", + "green": "#BAFFAA", + "yellow": "#ECE1C8", + "blue": "#9FD3E5", + "magenta": "#DEB3DF", + "cyan": "#B6E0E5", + "white": "#FFFFFF" + } + } + }, + { + "name": "Hemisu Light", + "colors": { + "primary": { + "background": "#EFEFEF", + "foreground": "#444444" + }, + "normal": { + "black": "#777777", + "red": "#FF0055", + "green": "#739100", + "yellow": "#503D15", + "blue": "#538091", + "magenta": "#5B345E", + "cyan": "#538091", + "white": "#999999" + }, + "bright": { + "black": "#999999", + "red": "#D65E76", + "green": "#9CC700", + "yellow": "#947555", + "blue": "#9DB3CD", + "magenta": "#A184A4", + "cyan": "#85B2AA", + "white": "#BABABA" + } + } + }, + { + "name": "Highway", + "colors": { + "primary": { + "background": "#222225", + "foreground": "#EDEDED" + }, + "normal": { + "black": "#000000", + "red": "#D00E18", + "green": "#138034", + "yellow": "#FFCB3E", + "blue": "#006BB3", + "magenta": "#6B2775", + "cyan": "#384564", + "white": "#EDEDED" + }, + "bright": { + "black": "#5D504A", + "red": "#F07E18", + "green": "#B1D130", + "yellow": "#FFF120", + "blue": "#4FC2FD", + "magenta": "#DE0071", + "cyan": "#5D504A", + "white": "#FFFFFF" + } + } + }, + { + "name": "Hipster Green", + "colors": { + "primary": { + "background": "#100B05", + "foreground": "#84C138" + }, + "normal": { + "black": "#000000", + "red": "#B6214A", + "green": "#00A600", + "yellow": "#BFBF00", + "blue": "#246EB2", + "magenta": "#B200B2", + "cyan": "#00A6B2", + "white": "#BFBFBF" + }, + "bright": { + "black": "#666666", + "red": "#E50000", + "green": "#86A93E", + "yellow": "#E5E500", + "blue": "#0000FF", + "magenta": "#E500E5", + "cyan": "#00E5E5", + "white": "#E5E5E5" + } + } + }, + { + "name": "Homebrew Light", + "colors": { + "primary": { + "background": "#FFFFFF", + "foreground": "#000000" + }, + "normal": { + "black": "#000000", + "red": "#990000", + "green": "#00A600", + "yellow": "#999900", + "blue": "#0000B2", + "magenta": "#B200B2", + "cyan": "#00A6B2", + "white": "#BFBFBF" + }, + "bright": { + "black": "#666666", + "red": "#E50000", + "green": "#00D900", + "yellow": "#E5E500", + "blue": "#0000FF", + "magenta": "#E500E5", + "cyan": "#00E5E5", + "white": "#E5E5E5" + } + } + }, + { + "name": "Homebrew Ocean", + "colors": { + "primary": { + "background": "#224FBC", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#990000", + "green": "#00A600", + "yellow": "#999900", + "blue": "#0000B2", + "magenta": "#B200B2", + "cyan": "#00A6B2", + "white": "#BFBFBF" + }, + "bright": { + "black": "#666666", + "red": "#E50000", + "green": "#00D900", + "yellow": "#E5E500", + "blue": "#0000FF", + "magenta": "#E500E5", + "cyan": "#00E5E5", + "white": "#E5E5E5" + } + } + }, + { + "name": "Homebrew", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#00FF00" + }, + "normal": { + "black": "#000000", + "red": "#990000", + "green": "#00A600", + "yellow": "#999900", + "blue": "#0000B2", + "magenta": "#B200B2", + "cyan": "#00A6B2", + "white": "#BFBFBF" + }, + "bright": { + "black": "#666666", + "red": "#E50000", + "green": "#00D900", + "yellow": "#E5E500", + "blue": "#0000FF", + "magenta": "#E500E5", + "cyan": "#00E5E5", + "white": "#E5E5E5" + } + } + }, + { + "name": "Horizon Bright", + "colors": { + "primary": { + "background": "#FDF0ED", + "foreground": "#1C1E26" + }, + "normal": { + "black": "#16161C", + "red": "#DA103F", + "green": "#1EB980", + "yellow": "#F6661E", + "blue": "#26BBD9", + "magenta": "#EE64AE", + "cyan": "#1D8991", + "white": "#FADAD1" + }, + "bright": { + "black": "#1A1C23", + "red": "#F43E5C", + "green": "#07DA8C", + "yellow": "#F77D26", + "blue": "#3FC6DE", + "magenta": "#F075B7", + "cyan": "#1EAEAE", + "white": "#FDF0ED" + } + } + }, + { + "name": "Horizon Dark", + "colors": { + "primary": { + "background": "#1C1E26", + "foreground": "#FDF0ED" + }, + "normal": { + "black": "#16161C", + "red": "#E95678", + "green": "#29D398", + "yellow": "#FAB795", + "blue": "#26BBD9", + "magenta": "#EE64AE", + "cyan": "#59E3E3", + "white": "#FADAD1" + }, + "bright": { + "black": "#232530", + "red": "#EC6A88", + "green": "#3FDAA4", + "yellow": "#FBC3A7", + "blue": "#3FC6DE", + "magenta": "#F075B7", + "cyan": "#6BE6E6", + "white": "#FDF0ED" + } + } + }, + { + "name": "Hurtado", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#DBDBDB" + }, + "normal": { + "black": "#575757", + "red": "#FF1B00", + "green": "#A5E055", + "yellow": "#FBE74A", + "blue": "#496487", + "magenta": "#FD5FF1", + "cyan": "#86E9FE", + "white": "#CBCCCB" + }, + "bright": { + "black": "#262626", + "red": "#D51D00", + "green": "#A5DF55", + "yellow": "#FBE84A", + "blue": "#89BEFF", + "magenta": "#C001C1", + "cyan": "#86EAFE", + "white": "#DBDBDB" + } + } + }, + { + "name": "Hybrid", + "colors": { + "primary": { + "background": "#141414", + "foreground": "#94A3A5" + }, + "normal": { + "black": "#282A2E", + "red": "#A54242", + "green": "#8C9440", + "yellow": "#DE935F", + "blue": "#5F819D", + "magenta": "#85678F", + "cyan": "#5E8D87", + "white": "#969896" + }, + "bright": { + "black": "#373B41", + "red": "#CC6666", + "green": "#B5BD68", + "yellow": "#F0C674", + "blue": "#81A2BE", + "magenta": "#B294BB", + "cyan": "#8ABEB7", + "white": "#C5C8C6" + } + } + }, + { + "name": "Ibm 3270 (High Contrast)", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#FDFDFD" + }, + "normal": { + "black": "#000000", + "red": "#FF0000", + "green": "#00FF00", + "yellow": "#FFFF00", + "blue": "#00BFFF", + "magenta": "#FFC0CB", + "cyan": "#40E0D0", + "white": "#BEBEBE" + }, + "bright": { + "black": "#414141", + "red": "#FFA500", + "green": "#98FB98", + "yellow": "#FFFF00", + "blue": "#0000CD", + "magenta": "#A020F0", + "cyan": "#AEEEEE", + "white": "#FFFFFF" + } + } + }, + { + "name": "Ibm3270", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#FDFDFD" + }, + "normal": { + "black": "#222222", + "red": "#F01818", + "green": "#24D830", + "yellow": "#F0D824", + "blue": "#7890F0", + "magenta": "#F078D8", + "cyan": "#54E4E4", + "white": "#A5A5A5" + }, + "bright": { + "black": "#888888", + "red": "#EF8383", + "green": "#7ED684", + "yellow": "#EFE28B", + "blue": "#B3BFEF", + "magenta": "#EFB3E3", + "cyan": "#9CE2E2", + "white": "#FFFFFF" + } + } + }, + { + "name": "Ic Green Ppl", + "colors": { + "primary": { + "background": "#3A3D3F", + "foreground": "#D9EFD3" + }, + "normal": { + "black": "#1F1F1F", + "red": "#FB002A", + "green": "#339C24", + "yellow": "#659B25", + "blue": "#149B45", + "magenta": "#53B82C", + "cyan": "#2CB868", + "white": "#E0FFEF" + }, + "bright": { + "black": "#032710", + "red": "#A7FF3F", + "green": "#9FFF6D", + "yellow": "#D2FF6D", + "blue": "#72FFB5", + "magenta": "#50FF3E", + "cyan": "#22FF71", + "white": "#DAEFD0" + } + } + }, + { + "name": "Ic Orange Ppl", + "colors": { + "primary": { + "background": "#262626", + "foreground": "#FFCB83" + }, + "normal": { + "black": "#000000", + "red": "#C13900", + "green": "#A4A900", + "yellow": "#CAAF00", + "blue": "#BD6D00", + "magenta": "#FC5E00", + "cyan": "#F79500", + "white": "#FFC88A" + }, + "bright": { + "black": "#6A4F2A", + "red": "#FF8C68", + "green": "#F6FF40", + "yellow": "#FFE36E", + "blue": "#FFBE55", + "magenta": "#FC874F", + "cyan": "#C69752", + "white": "#FAFAFF" + } + } + }, + { + "name": "Iceberg", + "colors": { + "primary": { + "background": "#161821", + "foreground": "#c6c8d1" + }, + "normal": { + "black": "#161821", + "red": "#e27878", + "green": "#b4be82", + "yellow": "#e2a478", + "blue": "#84a0c6", + "magenta": "#a093c7", + "cyan": "#89b8c2", + "white": "#c6c8d1" + }, + "bright": { + "black": "#6b7089", + "red": "#e98989", + "green": "#c0ca8e", + "yellow": "#e9b189", + "blue": "#91acd1", + "magenta": "#ada0d3", + "cyan": "#95c4ce", + "white": "#d2d4de" + } + } + }, + { + "name": "Idle Toes", + "colors": { + "primary": { + "background": "#323232", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#323232", + "red": "#D25252", + "green": "#7FE173", + "yellow": "#FFC66D", + "blue": "#4099FF", + "magenta": "#F680FF", + "cyan": "#BED6FF", + "white": "#EEEEEC" + }, + "bright": { + "black": "#535353", + "red": "#F07070", + "green": "#9DFF91", + "yellow": "#FFE48B", + "blue": "#5EB7F7", + "magenta": "#FF9DFF", + "cyan": "#DCF4FF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Ir Black", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#EEEEEE" + }, + "normal": { + "black": "#4E4E4E", + "red": "#FF6C60", + "green": "#A8FF60", + "yellow": "#FFFFB6", + "blue": "#69CBFE", + "magenta": "#FF73FD", + "cyan": "#C6C5FE", + "white": "#EEEEEE" + }, + "bright": { + "black": "#7C7C7C", + "red": "#FFB6B0", + "green": "#CEFFAC", + "yellow": "#FFFFCB", + "blue": "#B5DCFE", + "magenta": "#FF9CFE", + "cyan": "#DFDFFE", + "white": "#FFFFFF" + } + } + }, + { + "name": "Jackie Brown", + "colors": { + "primary": { + "background": "#2C1D16", + "foreground": "#FFCC2F" + }, + "normal": { + "black": "#2C1D16", + "red": "#EF5734", + "green": "#2BAF2B", + "yellow": "#BEBF00", + "blue": "#246EB2", + "magenta": "#D05EC1", + "cyan": "#00ACEE", + "white": "#BFBFBF" + }, + "bright": { + "black": "#666666", + "red": "#E50000", + "green": "#86A93E", + "yellow": "#E5E500", + "blue": "#0000FF", + "magenta": "#E500E5", + "cyan": "#00E5E5", + "white": "#E5E5E5" + } + } + }, + { + "name": "Japanesque", + "colors": { + "primary": { + "background": "#1E1E1E", + "foreground": "#F7F6EC" + }, + "normal": { + "black": "#343935", + "red": "#CF3F61", + "green": "#7BB75B", + "yellow": "#E9B32A", + "blue": "#4C9AD4", + "magenta": "#A57FC4", + "cyan": "#389AAD", + "white": "#FAFAF6" + }, + "bright": { + "black": "#595B59", + "red": "#D18FA6", + "green": "#767F2C", + "yellow": "#78592F", + "blue": "#135979", + "magenta": "#604291", + "cyan": "#76BBCA", + "white": "#B2B5AE" + } + } + }, + { + "name": "Jellybeans", + "colors": { + "primary": { + "background": "#121212", + "foreground": "#DEDEDE" + }, + "normal": { + "black": "#929292", + "red": "#E27373", + "green": "#94B979", + "yellow": "#FFBA7B", + "blue": "#97BEDC", + "magenta": "#E1C0FA", + "cyan": "#00988E", + "white": "#DEDEDE" + }, + "bright": { + "black": "#BDBDBD", + "red": "#FFA1A1", + "green": "#BDDEAB", + "yellow": "#FFDCA0", + "blue": "#B1D8F6", + "magenta": "#FBDAFF", + "cyan": "#1AB2A8", + "white": "#FFFFFF" + } + } + }, + { + "name": "Jup", + "colors": { + "primary": { + "background": "#758480", + "foreground": "#23476A" + }, + "normal": { + "black": "#000000", + "red": "#DD006F", + "green": "#6FDD00", + "yellow": "#DD6F00", + "blue": "#006FDD", + "magenta": "#6F00DD", + "cyan": "#00DD6F", + "white": "#F2F2F2" + }, + "bright": { + "black": "#7D7D7D", + "red": "#FF74B9", + "green": "#B9FF74", + "yellow": "#FFB974", + "blue": "#74B9FF", + "magenta": "#B974FF", + "cyan": "#74FFB9", + "white": "#FFFFFF" + } + } + }, + { + "name": "Kanagawa Dragon", + "colors": { + "primary": { + "background": "#181616", + "foreground": "#C5C9C5" + }, + "normal": { + "black": "#0D0C0C", + "red": "#C4746E", + "green": "#8A9A7B", + "yellow": "#C4B28A", + "blue": "#8BA4B0", + "magenta": "#A292A3", + "cyan": "#8EA4A2", + "white": "#C8C093" + }, + "bright": { + "black": "#A6A69C", + "red": "#E46876", + "green": "#87A987", + "yellow": "#E6C384", + "blue": "#7FB4CA", + "magenta": "#938AA9", + "cyan": "#7AA89F", + "white": "#C5C9C5" + } + } + }, + { + "name": "Kanagawa", + "colors": { + "primary": { + "background": "#1F1F28", + "foreground": "#DCD7BA" + }, + "normal": { + "black": "#090618", + "red": "#C34043", + "green": "#76946A", + "yellow": "#C0A36E", + "blue": "#7E9CD8", + "magenta": "#957FB8", + "cyan": "#6A9589", + "white": "#DCD7BA" + }, + "bright": { + "black": "#727169", + "red": "#E82424", + "green": "#98BB6C", + "yellow": "#E6C384", + "blue": "#7FB4CA", + "magenta": "#938AA9", + "cyan": "#7AA89F", + "white": "#C8C093" + } + } + }, + { + "name": "Kibble", + "colors": { + "primary": { + "background": "#0E100A", + "foreground": "#F7F7F7" + }, + "normal": { + "black": "#4D4D4D", + "red": "#C70031", + "green": "#29CF13", + "yellow": "#D8E30E", + "blue": "#3449D1", + "magenta": "#8400FF", + "cyan": "#0798AB", + "white": "#E2D1E3" + }, + "bright": { + "black": "#5A5A5A", + "red": "#F01578", + "green": "#6CE05C", + "yellow": "#F3F79E", + "blue": "#97A4F7", + "magenta": "#C495F0", + "cyan": "#68F2E0", + "white": "#FFFFFF" + } + } + }, + { + "name": "Kokuban", + "colors": { + "primary": { + "background": "#0D4A08", + "foreground": "#D8E2D7" + }, + "normal": { + "black": "#2E8744", + "red": "#D84E4C", + "green": "#95DA5A", + "yellow": "#D6E264", + "blue": "#4B9ED7", + "magenta": "#945FC5", + "cyan": "#D89B25", + "white": "#D8E2D7" + }, + "bright": { + "black": "#34934F", + "red": "#FF4F59", + "green": "#AFF56A", + "yellow": "#FCFF75", + "blue": "#57AEFF", + "magenta": "#AE63E9", + "cyan": "#FFAA2B", + "white": "#FFFEFE" + } + } + }, + { + "name": "Laserwave", + "colors": { + "primary": { + "background": "#1F1926", + "foreground": "#E0E0E0" + }, + "normal": { + "black": "#39243A", + "red": "#EB64B9", + "green": "#AFD686", + "yellow": "#FEAE87", + "blue": "#40B4C4", + "magenta": "#B381C5", + "cyan": "#215969", + "white": "#91889B" + }, + "bright": { + "black": "#716485", + "red": "#FC2377", + "green": "#50FA7B", + "yellow": "#FFE261", + "blue": "#74DFC4", + "magenta": "#6D75E0", + "cyan": "#B4DCE7", + "white": "#FFFFFF" + } + } + }, + { + "name": "Later This Evening", + "colors": { + "primary": { + "background": "#222222", + "foreground": "#959595" + }, + "normal": { + "black": "#2B2B2B", + "red": "#D45A60", + "green": "#AFBA67", + "yellow": "#E5D289", + "blue": "#A0BAD6", + "magenta": "#C092D6", + "cyan": "#91BFB7", + "white": "#3C3D3D" + }, + "bright": { + "black": "#454747", + "red": "#D3232F", + "green": "#AABB39", + "yellow": "#E5BE39", + "blue": "#6699D6", + "magenta": "#AB53D6", + "cyan": "#5FC0AE", + "white": "#C1C2C2" + } + } + }, + { + "name": "Lavandula", + "colors": { + "primary": { + "background": "#050014", + "foreground": "#736E7D" + }, + "normal": { + "black": "#230046", + "red": "#7D1625", + "green": "#337E6F", + "yellow": "#7F6F49", + "blue": "#4F4A7F", + "magenta": "#5A3F7F", + "cyan": "#58777F", + "white": "#736E7D" + }, + "bright": { + "black": "#372D46", + "red": "#E05167", + "green": "#52E0C4", + "yellow": "#E0C386", + "blue": "#8E87E0", + "magenta": "#A776E0", + "cyan": "#9AD4E0", + "white": "#8C91FA" + } + } + }, + { + "name": "Liquid Carbon Transparent", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#AFC2C2" + }, + "normal": { + "black": "#000000", + "red": "#FF3030", + "green": "#559A70", + "yellow": "#CCAC00", + "blue": "#0099CC", + "magenta": "#CC69C8", + "cyan": "#7AC4CC", + "white": "#BCCCCC" + }, + "bright": { + "black": "#000000", + "red": "#FF3030", + "green": "#559A70", + "yellow": "#CCAC00", + "blue": "#0099CC", + "magenta": "#CC69C8", + "cyan": "#7AC4CC", + "white": "#BCCCCC" + } + } + }, + { + "name": "Liquid Carbon", + "colors": { + "primary": { + "background": "#303030", + "foreground": "#AFC2C2" + }, + "normal": { + "black": "#000000", + "red": "#FF3030", + "green": "#559A70", + "yellow": "#CCAC00", + "blue": "#0099CC", + "magenta": "#CC69C8", + "cyan": "#7AC4CC", + "white": "#BCCCCC" + }, + "bright": { + "black": "#000000", + "red": "#FF3030", + "green": "#559A70", + "yellow": "#CCAC00", + "blue": "#0099CC", + "magenta": "#CC69C8", + "cyan": "#7AC4CC", + "white": "#BCCCCC" + } + } + }, + { + "name": "Lunaria Dark", + "colors": { + "primary": { + "background": "#36464E", + "foreground": "#CACED8" + }, + "normal": { + "black": "#36464E", + "red": "#846560", + "green": "#809984", + "yellow": "#A79A79", + "blue": "#555673", + "magenta": "#866C83", + "cyan": "#7E98B4", + "white": "#CACED8" + }, + "bright": { + "black": "#404F56", + "red": "#BB928B", + "green": "#BFDCC2", + "yellow": "#F1DFB6", + "blue": "#777798", + "magenta": "#BF9DB9", + "cyan": "#BDDCFF", + "white": "#DFE2ED" + } + } + }, + { + "name": "Lunaria Eclipse", + "colors": { + "primary": { + "background": "#323F46", + "foreground": "#C9CDD7" + }, + "normal": { + "black": "#323F46", + "red": "#83615B", + "green": "#7F9781", + "yellow": "#A69875", + "blue": "#53516F", + "magenta": "#856880", + "cyan": "#7D96B2", + "white": "#C9CDD7" + }, + "bright": { + "black": "#3D4950", + "red": "#BA9088", + "green": "#BEDBC1", + "yellow": "#F1DFB4", + "blue": "#767495", + "magenta": "#BE9CB8", + "cyan": "#BCDBFF", + "white": "#DFE2ED" + } + } + }, + { + "name": "Lunaria Light", + "colors": { + "primary": { + "background": "#EBE4E1", + "foreground": "#484646" + }, + "normal": { + "black": "#3E3C3D", + "red": "#783C1F", + "green": "#497D46", + "yellow": "#8F750B", + "blue": "#3F3566", + "magenta": "#793F62", + "cyan": "#3778A9", + "white": "#D5CFCC" + }, + "bright": { + "black": "#484646", + "red": "#B06240", + "green": "#7BC175", + "yellow": "#DCB735", + "blue": "#5C4F89", + "magenta": "#B56895", + "cyan": "#64BAFF", + "white": "#EBE4E1" + } + } + }, + { + "name": "Maia", + "colors": { + "primary": { + "background": "#31363B", + "foreground": "#BDC3C7" + }, + "normal": { + "black": "#232423", + "red": "#BA2922", + "green": "#7E807E", + "yellow": "#4C4F4D", + "blue": "#16A085", + "magenta": "#43746A", + "cyan": "#00CCCC", + "white": "#E0E0E0" + }, + "bright": { + "black": "#282928", + "red": "#CC372C", + "green": "#8D8F8D", + "yellow": "#4E524F", + "blue": "#13BF9D", + "magenta": "#487D72", + "cyan": "#00D1D1", + "white": "#E8E8E8" + } + } + }, + { + "name": "Man Page", + "colors": { + "primary": { + "background": "#FEF49C", + "foreground": "#000000" + }, + "normal": { + "black": "#000000", + "red": "#CC0000", + "green": "#00A600", + "yellow": "#999900", + "blue": "#0000B2", + "magenta": "#B200B2", + "cyan": "#00A6B2", + "white": "#CCCCCC" + }, + "bright": { + "black": "#666666", + "red": "#E50000", + "green": "#00D900", + "yellow": "#E5E500", + "blue": "#0000FF", + "magenta": "#E500E5", + "cyan": "#00E5E5", + "white": "#E5E5E5" + } + } + }, + { + "name": "Mar", + "colors": { + "primary": { + "background": "#FFFFFF", + "foreground": "#23476A" + }, + "normal": { + "black": "#000000", + "red": "#B5407B", + "green": "#7BB540", + "yellow": "#B57B40", + "blue": "#407BB5", + "magenta": "#7B40B5", + "cyan": "#40B57B", + "white": "#F8F8F8" + }, + "bright": { + "black": "#737373", + "red": "#CD73A0", + "green": "#A0CD73", + "yellow": "#CDA073", + "blue": "#73A0CD", + "magenta": "#A073CD", + "cyan": "#73CDA0", + "white": "#FFFFFF" + } + } + }, + { + "name": "Material", + "colors": { + "primary": { + "background": "#1E282C", + "foreground": "#C3C7D1" + }, + "normal": { + "black": "#073641", + "red": "#EB606B", + "green": "#C3E88D", + "yellow": "#F7EB95", + "blue": "#80CBC3", + "magenta": "#FF2490", + "cyan": "#AEDDFF", + "white": "#FFFFFF" + }, + "bright": { + "black": "#002B36", + "red": "#EB606B", + "green": "#C3E88D", + "yellow": "#F7EB95", + "blue": "#7DC6BF", + "magenta": "#6C71C3", + "cyan": "#34434D", + "white": "#FFFFFF" + } + } + }, + { + "name": "Mathias", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#BBBBBB" + }, + "normal": { + "black": "#000000", + "red": "#E52222", + "green": "#A6E32D", + "yellow": "#FC951E", + "blue": "#C48DFF", + "magenta": "#FA2573", + "cyan": "#67D9F0", + "white": "#F2F2F2" + }, + "bright": { + "black": "#555555", + "red": "#FF5555", + "green": "#55FF55", + "yellow": "#FFFF55", + "blue": "#5555FF", + "magenta": "#FF55FF", + "cyan": "#55FFFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Medallion", + "colors": { + "primary": { + "background": "#1D1908", + "foreground": "#CAC296" + }, + "normal": { + "black": "#000000", + "red": "#B64C00", + "green": "#7C8B16", + "yellow": "#D3BD26", + "blue": "#616BB0", + "magenta": "#8C5A90", + "cyan": "#916C25", + "white": "#CAC29A" + }, + "bright": { + "black": "#5E5219", + "red": "#FF9149", + "green": "#B2CA3B", + "yellow": "#FFE54A", + "blue": "#ACB8FF", + "magenta": "#FFA0FF", + "cyan": "#FFBC51", + "white": "#FED698" + } + } + }, + { + "name": "Miramare", + "colors": { + "primary": { + "background": "#2a2426", + "foreground": "#e6d6ac" + }, + "normal": { + "black": "#242021", + "red": "#e68183", + "green": "#a7c080", + "yellow": "#d9bb80", + "blue": "#89beba", + "magenta": "#d3a0bc", + "cyan": "#87c095", + "white": "#d8caac" + }, + "bright": { + "black": "#444444", + "red": "#e39b7b", + "green": "#a7c080", + "yellow": "#d9bb80", + "blue": "#89beba", + "magenta": "#d3a0bc", + "cyan": "#87c095", + "white": "#e6d6ac" + } + } + }, + { + "name": "Misterioso", + "colors": { + "primary": { + "background": "#2D3743", + "foreground": "#E1E1E0" + }, + "normal": { + "black": "#000000", + "red": "#FF4242", + "green": "#74AF68", + "yellow": "#FFAD29", + "blue": "#338F86", + "magenta": "#9414E6", + "cyan": "#23D7D7", + "white": "#E1E1E0" + }, + "bright": { + "black": "#555555", + "red": "#FF3242", + "green": "#74CD68", + "yellow": "#FFB929", + "blue": "#23D7D7", + "magenta": "#FF37FF", + "cyan": "#00EDE1", + "white": "#FFFFFF" + } + } + }, + { + "name": "Modus Operandi Tinted", + "colors": { + "primary": { + "background": "#fbf7f0", + "foreground": "#000000" + }, + "normal": { + "black": "#fbf7f0", + "red": "#a60000", + "green": "#006800", + "yellow": "#6f5500", + "blue": "#0031a9", + "magenta": "#721045", + "cyan": "#005e8b", + "white": "#000000" + }, + "bright": { + "black": "#efe9dd", + "red": "#d00000", + "green": "#008900", + "yellow": "#808000", + "blue": "#0000ff", + "magenta": "#dd22dd", + "cyan": "#008899", + "white": "#595959" + } + } + }, + { + "name": "Modus Operandi", + "colors": { + "primary": { + "background": "#ffffff", + "foreground": "#000000" + }, + "normal": { + "black": "#ffffff", + "red": "#a60000", + "green": "#006800", + "yellow": "#6f5500", + "blue": "#0031a9", + "magenta": "#721045", + "cyan": "#005e8b", + "white": "#000000" + }, + "bright": { + "black": "#f2f2f2", + "red": "#d00000", + "green": "#008900", + "yellow": "#808000", + "blue": "#0000ff", + "magenta": "#dd22dd", + "cyan": "#008899", + "white": "#595959" + } + } + }, + { + "name": "Modus Vivendi Tinted", + "colors": { + "primary": { + "background": "#0d0e1c", + "foreground": "#ffffff" + }, + "normal": { + "black": "#0d0e1c", + "red": "#ff5f59", + "green": "#44bc44", + "yellow": "#d0bc00", + "blue": "#2fafff", + "magenta": "#feacd0", + "cyan": "#00d3d0", + "white": "#ffffff" + }, + "bright": { + "black": "#1d2235", + "red": "#ff5f5f", + "green": "#44df44", + "yellow": "#efef00", + "blue": "#338fff", + "magenta": "#ff66ff", + "cyan": "#00eff0", + "white": "#989898" + } + } + }, + { + "name": "Modus Vivendi", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#ffffff" + }, + "normal": { + "black": "#000000", + "red": "#ff5f59", + "green": "#44bc44", + "yellow": "#d0bc00", + "blue": "#2fafff", + "magenta": "#feacd0", + "cyan": "#00d3d0", + "white": "#ffffff" + }, + "bright": { + "black": "#1e1e1e", + "red": "#ff5f5f", + "green": "#44df44", + "yellow": "#efef00", + "blue": "#338fff", + "magenta": "#ff66ff", + "cyan": "#00eff0", + "white": "#989898" + } + } + }, + { + "name": "Molokai", + "colors": { + "primary": { + "background": "#1B1D1E", + "foreground": "#BBBBBB" + }, + "normal": { + "black": "#1B1D1E", + "red": "#7325FA", + "green": "#23E298", + "yellow": "#60D4DF", + "blue": "#D08010", + "magenta": "#FF0087", + "cyan": "#D0A843", + "white": "#BBBBBB" + }, + "bright": { + "black": "#555555", + "red": "#9D66F6", + "green": "#5FE0B1", + "yellow": "#6DF2FF", + "blue": "#FFAF00", + "magenta": "#FF87AF", + "cyan": "#FFCE51", + "white": "#FFFFFF" + } + } + }, + { + "name": "Mona Lisa", + "colors": { + "primary": { + "background": "#120B0D", + "foreground": "#F7D66A" + }, + "normal": { + "black": "#351B0E", + "red": "#9B291C", + "green": "#636232", + "yellow": "#C36E28", + "blue": "#515C5D", + "magenta": "#9B1D29", + "cyan": "#588056", + "white": "#F7D75C" + }, + "bright": { + "black": "#874228", + "red": "#FF4331", + "green": "#B4B264", + "yellow": "#FF9566", + "blue": "#9EB2B4", + "magenta": "#FF5B6A", + "cyan": "#8ACD8F", + "white": "#FFE598" + } + } + }, + { + "name": "Mono Amber", + "colors": { + "primary": { + "background": "#2B1900", + "foreground": "#FF9400" + }, + "normal": { + "black": "#402500", + "red": "#FF9400", + "green": "#FF9400", + "yellow": "#FF9400", + "blue": "#FF9400", + "magenta": "#FF9400", + "cyan": "#FF9400", + "white": "#FF9400" + }, + "bright": { + "black": "#FF9400", + "red": "#FF9400", + "green": "#FF9400", + "yellow": "#FF9400", + "blue": "#FF9400", + "magenta": "#FF9400", + "cyan": "#FF9400", + "white": "#FF9400" + } + } + }, + { + "name": "Mono Cyan", + "colors": { + "primary": { + "background": "#00222B", + "foreground": "#00CCFF" + }, + "normal": { + "black": "#003340", + "red": "#00CCFF", + "green": "#00CCFF", + "yellow": "#00CCFF", + "blue": "#00CCFF", + "magenta": "#00CCFF", + "cyan": "#00CCFF", + "white": "#00CCFF" + }, + "bright": { + "black": "#00CCFF", + "red": "#00CCFF", + "green": "#00CCFF", + "yellow": "#00CCFF", + "blue": "#00CCFF", + "magenta": "#00CCFF", + "cyan": "#00CCFF", + "white": "#00CCFF" + } + } + }, + { + "name": "Mono Green", + "colors": { + "primary": { + "background": "#022B00", + "foreground": "#0BFF00" + }, + "normal": { + "black": "#034000", + "red": "#0BFF00", + "green": "#0BFF00", + "yellow": "#0BFF00", + "blue": "#0BFF00", + "magenta": "#0BFF00", + "cyan": "#0BFF00", + "white": "#0BFF00" + }, + "bright": { + "black": "#0BFF00", + "red": "#0BFF00", + "green": "#0BFF00", + "yellow": "#0BFF00", + "blue": "#0BFF00", + "magenta": "#0BFF00", + "cyan": "#0BFF00", + "white": "#0BFF00" + } + } + }, + { + "name": "Mono Red", + "colors": { + "primary": { + "background": "#2B0C00", + "foreground": "#FF3600" + }, + "normal": { + "black": "#401200", + "red": "#FF3600", + "green": "#FF3600", + "yellow": "#FF3600", + "blue": "#FF3600", + "magenta": "#FF3600", + "cyan": "#FF3600", + "white": "#FF3600" + }, + "bright": { + "black": "#FF3600", + "red": "#FF3600", + "green": "#FF3600", + "yellow": "#FF3600", + "blue": "#FF3600", + "magenta": "#FF3600", + "cyan": "#FF3600", + "white": "#FF3600" + } + } + }, + { + "name": "Mono White", + "colors": { + "primary": { + "background": "#262626", + "foreground": "#FAFAFA" + }, + "normal": { + "black": "#3B3B3B", + "red": "#FAFAFA", + "green": "#FAFAFA", + "yellow": "#FAFAFA", + "blue": "#FAFAFA", + "magenta": "#FAFAFA", + "cyan": "#FAFAFA", + "white": "#FAFAFA" + }, + "bright": { + "black": "#FAFAFA", + "red": "#FAFAFA", + "green": "#FAFAFA", + "yellow": "#FAFAFA", + "blue": "#FAFAFA", + "magenta": "#FAFAFA", + "cyan": "#FAFAFA", + "white": "#FAFAFA" + } + } + }, + { + "name": "Mono Yellow", + "colors": { + "primary": { + "background": "#2B2400", + "foreground": "#FFD300" + }, + "normal": { + "black": "#403500", + "red": "#FFD300", + "green": "#FFD300", + "yellow": "#FFD300", + "blue": "#FFD300", + "magenta": "#FFD300", + "cyan": "#FFD300", + "white": "#FFD300" + }, + "bright": { + "black": "#FFD300", + "red": "#FFD300", + "green": "#FFD300", + "yellow": "#FFD300", + "blue": "#FFD300", + "magenta": "#FFD300", + "cyan": "#FFD300", + "white": "#FFD300" + } + } + }, + { + "name": "Monokai Dark", + "colors": { + "primary": { + "background": "#272822", + "foreground": "#F8F8F2" + }, + "normal": { + "black": "#75715E", + "red": "#F92672", + "green": "#A6E22E", + "yellow": "#F4BF75", + "blue": "#66D9EF", + "magenta": "#AE81FF", + "cyan": "#2AA198", + "white": "#F9F8F5" + }, + "bright": { + "black": "#272822", + "red": "#F92672", + "green": "#A6E22E", + "yellow": "#F4BF75", + "blue": "#66D9EF", + "magenta": "#AE81FF", + "cyan": "#2AA198", + "white": "#F8F8F2" + } + } + }, + { + "name": "Monokai Pro Ristretto", + "colors": { + "primary": { + "background": "#3E3838", + "foreground": "#FBF2F3" + }, + "normal": { + "black": "#3E3838", + "red": "#DF7484", + "green": "#BBD87E", + "yellow": "#EDCE73", + "blue": "#DC9373", + "magenta": "#A9AAE9", + "cyan": "#A4D7CC", + "white": "#FBF2F3" + }, + "bright": { + "black": "#70696A", + "red": "#DF7484", + "green": "#BBD87E", + "yellow": "#EDCE73", + "blue": "#DC9373", + "magenta": "#A9AAE9", + "cyan": "#A4D7CC", + "white": "#FBF2F3" + } + } + }, + { + "name": "Monokai Pro", + "colors": { + "primary": { + "background": "#363537", + "foreground": "#FDF9F3" + }, + "normal": { + "black": "#363537", + "red": "#FF6188", + "green": "#A9DC76", + "yellow": "#FFD866", + "blue": "#FC9867", + "magenta": "#AB9DF2", + "cyan": "#78DCE8", + "white": "#FDF9F3" + }, + "bright": { + "black": "#908E8F", + "red": "#FF6188", + "green": "#A9DC76", + "yellow": "#FFD866", + "blue": "#FC9867", + "magenta": "#AB9DF2", + "cyan": "#78DCE8", + "white": "#FDF9F3" + } + } + }, + { + "name": "Monokai Soda", + "colors": { + "primary": { + "background": "#1A1A1A", + "foreground": "#C4C5B5" + }, + "normal": { + "black": "#1A1A1A", + "red": "#F4005F", + "green": "#98E024", + "yellow": "#FA8419", + "blue": "#9D65FF", + "magenta": "#F4005F", + "cyan": "#58D1EB", + "white": "#C4C5B5" + }, + "bright": { + "black": "#625E4C", + "red": "#F4005F", + "green": "#98E024", + "yellow": "#E0D561", + "blue": "#9D65FF", + "magenta": "#F4005F", + "cyan": "#58D1EB", + "white": "#F6F6EF" + } + } + }, + { + "name": "Moonfly", + "colors": { + "primary": { + "background": "#080808", + "foreground": "#BDBDBD" + }, + "normal": { + "black": "#323437", + "red": "#FF5454", + "green": "#8CC85F", + "yellow": "#E3C78A", + "blue": "#80A0FF", + "magenta": "#CF87E8", + "cyan": "#79DAC8", + "white": "#C6C6C6" + }, + "bright": { + "black": "#949494", + "red": "#FF5189", + "green": "#36C692", + "yellow": "#C2C292", + "blue": "#74B2FF", + "magenta": "#AE81FF", + "cyan": "#85DC85", + "white": "#E4E4E4" + } + } + }, + { + "name": "Morada", + "colors": { + "primary": { + "background": "#211F46", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#040404", + "red": "#0F49C4", + "green": "#48B117", + "yellow": "#E87324", + "blue": "#BC0116", + "magenta": "#665B93", + "cyan": "#70A699", + "white": "#F5DCBE" + }, + "bright": { + "black": "#4F7CBF", + "red": "#1C96C7", + "green": "#3BFF6F", + "yellow": "#EFC31C", + "blue": "#FB605B", + "magenta": "#975B5A", + "cyan": "#1EFF8E", + "white": "#F6F5FB" + } + } + }, + { + "name": "N0Tch2K", + "colors": { + "primary": { + "background": "#222222", + "foreground": "#A0A0A0" + }, + "normal": { + "black": "#383838", + "red": "#A95551", + "green": "#666666", + "yellow": "#A98051", + "blue": "#657D3E", + "magenta": "#767676", + "cyan": "#C9C9C9", + "white": "#D0B8A3" + }, + "bright": { + "black": "#474747", + "red": "#A97775", + "green": "#8C8C8C", + "yellow": "#A99175", + "blue": "#98BD5E", + "magenta": "#A3A3A3", + "cyan": "#DCDCDC", + "white": "#D8C8BB" + } + } + }, + { + "name": "Neon Night", + "colors": { + "primary": { + "background": "#20242D", + "foreground": "#C7C8FF" + }, + "normal": { + "black": "#20242D", + "red": "#FF8E8E", + "green": "#7EFDD0", + "yellow": "#FCAD3F", + "blue": "#69B4F9", + "magenta": "#DD92F6", + "cyan": "#8CE8FF", + "white": "#C9CCCD" + }, + "bright": { + "black": "#20242D", + "red": "#FF8E8E", + "green": "#7EFDD0", + "yellow": "#FCAD3F", + "blue": "#69B4F9", + "magenta": "#DD92F6", + "cyan": "#8CE8FF", + "white": "#C9CCCD" + } + } + }, + { + "name": "Neopolitan", + "colors": { + "primary": { + "background": "#271F19", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#800000", + "green": "#61CE3C", + "yellow": "#FBDE2D", + "blue": "#253B76", + "magenta": "#FF0080", + "cyan": "#8DA6CE", + "white": "#F8F8F8" + }, + "bright": { + "black": "#000000", + "red": "#800000", + "green": "#61CE3C", + "yellow": "#FBDE2D", + "blue": "#253B76", + "magenta": "#FF0080", + "cyan": "#8DA6CE", + "white": "#F8F8F8" + } + } + }, + { + "name": "Nep", + "colors": { + "primary": { + "background": "#758480", + "foreground": "#23476A" + }, + "normal": { + "black": "#000000", + "red": "#DD6F00", + "green": "#00DD6F", + "yellow": "#6FDD00", + "blue": "#6F00DD", + "magenta": "#DD006F", + "cyan": "#006FDD", + "white": "#F2F2F2" + }, + "bright": { + "black": "#7D7D7D", + "red": "#FFB974", + "green": "#74FFB9", + "yellow": "#B9FF74", + "blue": "#B974FF", + "magenta": "#FF74B9", + "cyan": "#74B9FF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Neutron", + "colors": { + "primary": { + "background": "#1C1E22", + "foreground": "#E6E8EF" + }, + "normal": { + "black": "#23252B", + "red": "#B54036", + "green": "#5AB977", + "yellow": "#DEB566", + "blue": "#6A7C93", + "magenta": "#A4799D", + "cyan": "#3F94A8", + "white": "#E6E8EF" + }, + "bright": { + "black": "#23252B", + "red": "#B54036", + "green": "#5AB977", + "yellow": "#DEB566", + "blue": "#6A7C93", + "magenta": "#A4799D", + "cyan": "#3F94A8", + "white": "#EBEDF2" + } + } + }, + { + "name": "Night Owl", + "colors": { + "primary": { + "background": "#011627", + "foreground": "#D6DEEB" + }, + "normal": { + "black": "#011627", + "red": "#EF5350", + "green": "#22DA6E", + "yellow": "#ADDB67", + "blue": "#82AAFF", + "magenta": "#C792EA", + "cyan": "#21C7A8", + "white": "#FFFFFF" + }, + "bright": { + "black": "#575656", + "red": "#EF5350", + "green": "#22DA6E", + "yellow": "#FFEB95", + "blue": "#82AAFF", + "magenta": "#C792EA", + "cyan": "#7FDBCA", + "white": "#FFFFFF" + } + } + }, + { + "name": "Nightfly", + "colors": { + "primary": { + "background": "#011627", + "foreground": "#BDC1C6" + }, + "normal": { + "black": "#1D3B53", + "red": "#FC514E", + "green": "#A1CD5E", + "yellow": "#E3D18A", + "blue": "#82AAFF", + "magenta": "#C792EA", + "cyan": "#7FDBCA", + "white": "#A1AAB8" + }, + "bright": { + "black": "#7C8F8F", + "red": "#FF5874", + "green": "#21C7A8", + "yellow": "#ECC48D", + "blue": "#82AAFF", + "magenta": "#AE81FF", + "cyan": "#7FDBCA", + "white": "#D6DEEB" + } + } + }, + { + "name": "Nightlion V1", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#BBBBBB" + }, + "normal": { + "black": "#4C4C4C", + "red": "#BB0000", + "green": "#5FDE8F", + "yellow": "#F3F167", + "blue": "#276BD8", + "magenta": "#BB00BB", + "cyan": "#00DADF", + "white": "#BBBBBB" + }, + "bright": { + "black": "#555555", + "red": "#FF5555", + "green": "#55FF55", + "yellow": "#FFFF55", + "blue": "#5555FF", + "magenta": "#FF55FF", + "cyan": "#55FFFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Nightlion V2", + "colors": { + "primary": { + "background": "#171717", + "foreground": "#BBBBBB" + }, + "normal": { + "black": "#4C4C4C", + "red": "#BB0000", + "green": "#04F623", + "yellow": "#F3F167", + "blue": "#64D0F0", + "magenta": "#CE6FDB", + "cyan": "#00DADF", + "white": "#BBBBBB" + }, + "bright": { + "black": "#555555", + "red": "#FF5555", + "green": "#7DF71D", + "yellow": "#FFFF55", + "blue": "#62CBE8", + "magenta": "#FF9BF5", + "cyan": "#00CCD8", + "white": "#FFFFFF" + } + } + }, + { + "name": "Nighty", + "colors": { + "primary": { + "background": "#2F2F2F", + "foreground": "#DFDFDF" + }, + "normal": { + "black": "#373D48", + "red": "#9B3E46", + "green": "#095B32", + "yellow": "#808020", + "blue": "#1D3E6F", + "magenta": "#823065", + "cyan": "#3A7458", + "white": "#828282" + }, + "bright": { + "black": "#5C6370", + "red": "#D0555F", + "green": "#119955", + "yellow": "#DFE048", + "blue": "#4674B8", + "magenta": "#ED86C9", + "cyan": "#70D2A4", + "white": "#DFDFDF" + } + } + }, + { + "name": "Nord Light", + "colors": { + "primary": { + "background": "#EBEAF2", + "foreground": "#004F7C" + }, + "normal": { + "black": "#003B4E", + "red": "#E64569", + "green": "#069F5F", + "yellow": "#DAB752", + "blue": "#439ECF", + "magenta": "#D961DC", + "cyan": "#00B1BE", + "white": "#B3B3B3" + }, + "bright": { + "black": "#3E89A1", + "red": "#E4859A", + "green": "#A2CCA1", + "yellow": "#E1E387", + "blue": "#6FBBE2", + "magenta": "#E586E7", + "cyan": "#96DCDA", + "white": "#DEDEDE" + } + } + }, + { + "name": "Nord", + "colors": { + "primary": { + "background": "#2E3440", + "foreground": "#D8DEE9" + }, + "normal": { + "black": "#3B4252", + "red": "#BF616A", + "green": "#A3BE8C", + "yellow": "#EBCB8B", + "blue": "#81A1C1", + "magenta": "#B48EAD", + "cyan": "#88C0D0", + "white": "#E5E9F0" + }, + "bright": { + "black": "#4C566A", + "red": "#BF616A", + "green": "#A3BE8C", + "yellow": "#EBCB8B", + "blue": "#81A1C1", + "magenta": "#B48EAD", + "cyan": "#8FBCBB", + "white": "#ECEFF4" + } + } + }, + { + "name": "Novel", + "colors": { + "primary": { + "background": "#DFDBC3", + "foreground": "#3B2322" + }, + "normal": { + "black": "#000000", + "red": "#CC0000", + "green": "#009600", + "yellow": "#D06B00", + "blue": "#0000CC", + "magenta": "#CC00CC", + "cyan": "#0087CC", + "white": "#CCCCCC" + }, + "bright": { + "black": "#808080", + "red": "#CC0000", + "green": "#009600", + "yellow": "#D06B00", + "blue": "#0000CC", + "magenta": "#CC00CC", + "cyan": "#0087CC", + "white": "#FFFFFF" + } + } + }, + { + "name": "Obsidian", + "colors": { + "primary": { + "background": "#283033", + "foreground": "#CDCDCD" + }, + "normal": { + "black": "#000000", + "red": "#A60001", + "green": "#00BB00", + "yellow": "#FECD22", + "blue": "#3A9BDB", + "magenta": "#BB00BB", + "cyan": "#00BBBB", + "white": "#BBBBBB" + }, + "bright": { + "black": "#555555", + "red": "#FF0003", + "green": "#93C863", + "yellow": "#FEF874", + "blue": "#A1D7FF", + "magenta": "#FF55FF", + "cyan": "#55FFFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Ocean Dark", + "colors": { + "primary": { + "background": "#1C1F27", + "foreground": "#979CAC" + }, + "normal": { + "black": "#4F4F4F", + "red": "#AF4B57", + "green": "#AFD383", + "yellow": "#E5C079", + "blue": "#7D90A4", + "magenta": "#A4799D", + "cyan": "#85A6A5", + "white": "#EEEDEE" + }, + "bright": { + "black": "#7B7B7B", + "red": "#AF4B57", + "green": "#CEFFAB", + "yellow": "#FFFECC", + "blue": "#B5DCFE", + "magenta": "#FB9BFE", + "cyan": "#DFDFFD", + "white": "#FEFFFE" + } + } + }, + { + "name": "Oceanic Next", + "colors": { + "primary": { + "background": "#121B21", + "foreground": "#B3B8C3" + }, + "normal": { + "black": "#121C21", + "red": "#E44754", + "green": "#89BD82", + "yellow": "#F7BD51", + "blue": "#5486C0", + "magenta": "#B77EB8", + "cyan": "#50A5A4", + "white": "#FFFFFF" + }, + "bright": { + "black": "#52606B", + "red": "#E44754", + "green": "#89BD82", + "yellow": "#F7BD51", + "blue": "#5486C0", + "magenta": "#B77EB8", + "cyan": "#50A5A4", + "white": "#FFFFFF" + } + } + }, + { + "name": "Ollie", + "colors": { + "primary": { + "background": "#222125", + "foreground": "#8A8DAE" + }, + "normal": { + "black": "#000000", + "red": "#AC2E31", + "green": "#31AC61", + "yellow": "#AC4300", + "blue": "#2D57AC", + "magenta": "#B08528", + "cyan": "#1FA6AC", + "white": "#8A8EAC" + }, + "bright": { + "black": "#5B3725", + "red": "#FF3D48", + "green": "#3BFF99", + "yellow": "#FF5E1E", + "blue": "#4488FF", + "magenta": "#FFC21D", + "cyan": "#1FFAFF", + "white": "#5B6EA7" + } + } + }, + { + "name": "Omni", + "colors": { + "primary": { + "background": "#191622", + "foreground": "#ABB2BF" + }, + "normal": { + "black": "#191622", + "red": "#E96379", + "green": "#67E480", + "yellow": "#E89E64", + "blue": "#78D1E1", + "magenta": "#988BC7", + "cyan": "#FF79C6", + "white": "#ABB2BF" + }, + "bright": { + "black": "#000000", + "red": "#E96379", + "green": "#67E480", + "yellow": "#E89E64", + "blue": "#78D1E1", + "magenta": "#988BC7", + "cyan": "#FF79C6", + "white": "#FFFFFF" + } + } + }, + { + "name": "One Dark", + "colors": { + "primary": { + "background": "#1E2127", + "foreground": "#5C6370" + }, + "normal": { + "black": "#000000", + "red": "#E06C75", + "green": "#98C379", + "yellow": "#D19A66", + "blue": "#61AFEF", + "magenta": "#C678DD", + "cyan": "#56B6C2", + "white": "#ABB2BF" + }, + "bright": { + "black": "#5C6370", + "red": "#E06C75", + "green": "#98C379", + "yellow": "#D19A66", + "blue": "#61AFEF", + "magenta": "#C678DD", + "cyan": "#56B6C2", + "white": "#FFFEFE" + } + } + }, + { + "name": "One Half Black", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#DCDFE4" + }, + "normal": { + "black": "#282C34", + "red": "#E06C75", + "green": "#98C379", + "yellow": "#E5C07B", + "blue": "#61AFEF", + "magenta": "#C678DD", + "cyan": "#56B6C2", + "white": "#DCDFE4" + }, + "bright": { + "black": "#282C34", + "red": "#E06C75", + "green": "#98C379", + "yellow": "#E5C07B", + "blue": "#61AFEF", + "magenta": "#C678DD", + "cyan": "#56B6C2", + "white": "#DCDFE4" + } + } + }, + { + "name": "One Light", + "colors": { + "primary": { + "background": "#F8F8F8", + "foreground": "#2A2B32" + }, + "normal": { + "black": "#000000", + "red": "#DA3E39", + "green": "#41933E", + "yellow": "#855504", + "blue": "#315EEE", + "magenta": "#930092", + "cyan": "#0E6FAD", + "white": "#8E8F96" + }, + "bright": { + "black": "#2A2B32", + "red": "#DA3E39", + "green": "#41933E", + "yellow": "#855504", + "blue": "#315EEE", + "magenta": "#930092", + "cyan": "#0E6FAD", + "white": "#FFFEFE" + } + } + }, + { + "name": "Oxocarbon Dark", + "colors": { + "primary": { + "background": "#161616", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#262626", + "red": "#EE5396", + "green": "#42BE65", + "yellow": "#FFE97B", + "blue": "#33B1FF", + "magenta": "#FF7EB6", + "cyan": "#3DDBD9", + "white": "#DDE1E6" + }, + "bright": { + "black": "#393939", + "red": "#EE5396", + "green": "#42BE65", + "yellow": "#FFE97B", + "blue": "#33B1FF", + "magenta": "#FF7EB6", + "cyan": "#3DDBD9", + "white": "#FFFFFF" + } + } + }, + { + "name": "Palenight", + "colors": { + "primary": { + "background": "#292D3E", + "foreground": "#BFC7D5" + }, + "normal": { + "black": "#292D3E", + "red": "#F07178", + "green": "#C3E88D", + "yellow": "#FFCB6B", + "blue": "#82AAFF", + "magenta": "#C792EA", + "cyan": "#60ADEC", + "white": "#ABB2BF" + }, + "bright": { + "black": "#959DCB", + "red": "#F07178", + "green": "#C3E88D", + "yellow": "#FF5572", + "blue": "#82AAFF", + "magenta": "#FFCB6B", + "cyan": "#676E95", + "white": "#FFFEFE" + } + } + }, + { + "name": "Pali", + "colors": { + "primary": { + "background": "#232E37", + "foreground": "#D9E6F2" + }, + "normal": { + "black": "#0A0A0A", + "red": "#AB8F74", + "green": "#74AB8F", + "yellow": "#8FAB74", + "blue": "#8F74AB", + "magenta": "#AB748F", + "cyan": "#748FAB", + "white": "#F2F2F2" + }, + "bright": { + "black": "#5D5D5D", + "red": "#FF1D62", + "green": "#9CC3AF", + "yellow": "#FFD00A", + "blue": "#AF9CC3", + "magenta": "#FF1D62", + "cyan": "#4BB8FD", + "white": "#A020F0" + } + } + }, + { + "name": "Panda", + "colors": { + "primary": { + "background": "#1D1E20", + "foreground": "#F0F0F0" + }, + "normal": { + "black": "#1F1F20", + "red": "#FB055A", + "green": "#26FFD4", + "yellow": "#FDAA5A", + "blue": "#5C9FFF", + "magenta": "#FC59A6", + "cyan": "#26FFD4", + "white": "#F0F0F0" + }, + "bright": { + "black": "#5C6370", + "red": "#FB055A", + "green": "#26FFD4", + "yellow": "#FEBE7E", + "blue": "#55ADFF", + "magenta": "#FD95D0", + "cyan": "#26FFD4", + "white": "#F0F0F0" + } + } + }, + { + "name": "Paper", + "colors": { + "primary": { + "background": "#f2eede", + "foreground": "#000000" + }, + "normal": { + "black": "#000000", + "red": "#cc3e28", + "green": "#216609", + "yellow": "#b58900", + "blue": "#1e6fcc", + "magenta": "#5c21a5", + "cyan": "#158c86", + "white": "#aaaaaa" + }, + "bright": { + "black": "#555555", + "red": "#cc3e28", + "green": "#216609", + "yellow": "#b58900", + "blue": "#1e6fcc", + "magenta": "#5c21a5", + "cyan": "#158c86", + "white": "#aaaaaa" + } + } + }, + { + "name": "Papercolor Dark", + "colors": { + "primary": { + "background": "#1C1C1C", + "foreground": "#D0D0D0" + }, + "normal": { + "black": "#1C1C1C", + "red": "#AF005F", + "green": "#5FAF00", + "yellow": "#D7AF5F", + "blue": "#5FAFD7", + "magenta": "#808080", + "cyan": "#D7875F", + "white": "#D0D0D0" + }, + "bright": { + "black": "#585858", + "red": "#5FAF5F", + "green": "#AFD700", + "yellow": "#AF87D7", + "blue": "#FFAF00", + "magenta": "#FF5FAF", + "cyan": "#00AFAF", + "white": "#5F8787" + } + } + }, + { + "name": "Papercolor Light", + "colors": { + "primary": { + "background": "#EEEEEE", + "foreground": "#444444" + }, + "normal": { + "black": "#EEEEEE", + "red": "#AF0000", + "green": "#008700", + "yellow": "#5F8700", + "blue": "#0087AF", + "magenta": "#878787", + "cyan": "#005F87", + "white": "#444444" + }, + "bright": { + "black": "#BCBCBC", + "red": "#D70000", + "green": "#D70087", + "yellow": "#8700AF", + "blue": "#D75F00", + "magenta": "#D75F00", + "cyan": "#005FAF", + "white": "#005F87" + } + } + }, + { + "name": "Paraiso Dark", + "colors": { + "primary": { + "background": "#2F1E2E", + "foreground": "#A39E9B" + }, + "normal": { + "black": "#2F1E2E", + "red": "#EF6155", + "green": "#48B685", + "yellow": "#FEC418", + "blue": "#06B6EF", + "magenta": "#815BA4", + "cyan": "#5BC4BF", + "white": "#A39E9B" + }, + "bright": { + "black": "#776E71", + "red": "#EF6155", + "green": "#48B685", + "yellow": "#FEC418", + "blue": "#06B6EF", + "magenta": "#815BA4", + "cyan": "#5BC4BF", + "white": "#E7E9DB" + } + } + }, + { + "name": "Paul Millr", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#F2F2F2" + }, + "normal": { + "black": "#2A2A2A", + "red": "#FF0000", + "green": "#79FF0F", + "yellow": "#D3BF00", + "blue": "#396BD7", + "magenta": "#B449BE", + "cyan": "#66CCFF", + "white": "#BBBBBB" + }, + "bright": { + "black": "#666666", + "red": "#FF0080", + "green": "#66FF66", + "yellow": "#F3D64E", + "blue": "#709AED", + "magenta": "#DB67E6", + "cyan": "#7ADFF2", + "white": "#FFFFFF" + } + } + }, + { + "name": "Pencil Dark", + "colors": { + "primary": { + "background": "#212121", + "foreground": "#F1F1F1" + }, + "normal": { + "black": "#212121", + "red": "#C30771", + "green": "#10A778", + "yellow": "#A89C14", + "blue": "#008EC4", + "magenta": "#523C79", + "cyan": "#20A5BA", + "white": "#D9D9D9" + }, + "bright": { + "black": "#424242", + "red": "#FB007A", + "green": "#5FD7AF", + "yellow": "#F3E430", + "blue": "#20BBFC", + "magenta": "#6855DE", + "cyan": "#4FB8CC", + "white": "#F1F1F1" + } + } + }, + { + "name": "Pencil Light", + "colors": { + "primary": { + "background": "#F1F1F1", + "foreground": "#424242" + }, + "normal": { + "black": "#212121", + "red": "#C30771", + "green": "#10A778", + "yellow": "#A89C14", + "blue": "#008EC4", + "magenta": "#523C79", + "cyan": "#20A5BA", + "white": "#D9D9D9" + }, + "bright": { + "black": "#424242", + "red": "#FB007A", + "green": "#5FD7AF", + "yellow": "#F3E430", + "blue": "#20BBFC", + "magenta": "#6855DE", + "cyan": "#4FB8CC", + "white": "#F1F1F1" + } + } + }, + { + "name": "Peppermint", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#C7C7C7" + }, + "normal": { + "black": "#353535", + "red": "#E64569", + "green": "#89D287", + "yellow": "#DAB752", + "blue": "#439ECF", + "magenta": "#D961DC", + "cyan": "#64AAAF", + "white": "#B3B3B3" + }, + "bright": { + "black": "#535353", + "red": "#E4859A", + "green": "#A2CCA1", + "yellow": "#E1E387", + "blue": "#6FBBE2", + "magenta": "#E586E7", + "cyan": "#96DCDA", + "white": "#DEDEDE" + } + } + }, + { + "name": "Pixiefloss", + "colors": { + "primary": { + "background": "#241F33", + "foreground": "#D1CAE8" + }, + "normal": { + "black": "#2F2942", + "red": "#FF857F", + "green": "#48B685", + "yellow": "#E6C000", + "blue": "#AE81FF", + "magenta": "#EF6155", + "cyan": "#C2FFDF", + "white": "#F8F8F2" + }, + "bright": { + "black": "#75507B", + "red": "#F1568E", + "green": "#5ADBA2", + "yellow": "#D5A425", + "blue": "#C5A3FF", + "magenta": "#EF6155", + "cyan": "#C2FFFF", + "white": "#F8F8F0" + } + } + }, + { + "name": "Pnevma", + "colors": { + "primary": { + "background": "#1C1C1C", + "foreground": "#D0D0D0" + }, + "normal": { + "black": "#2F2E2D", + "red": "#A36666", + "green": "#90A57D", + "yellow": "#D7AF87", + "blue": "#7FA5BD", + "magenta": "#C79EC4", + "cyan": "#8ADBB4", + "white": "#D0D0D0" + }, + "bright": { + "black": "#4A4845", + "red": "#D78787", + "green": "#AFBEA2", + "yellow": "#E4C9AF", + "blue": "#A1BDCE", + "magenta": "#D7BEDA", + "cyan": "#B1E7DD", + "white": "#EFEFEF" + } + } + }, + { + "name": "Powershell", + "colors": { + "primary": { + "background": "#052454", + "foreground": "#F6F6F7" + }, + "normal": { + "black": "#000000", + "red": "#7E0008", + "green": "#098003", + "yellow": "#C4A000", + "blue": "#010083", + "magenta": "#D33682", + "cyan": "#0E807F", + "white": "#7F7C7F" + }, + "bright": { + "black": "#808080", + "red": "#EF2929", + "green": "#1CFE3C", + "yellow": "#FEFE45", + "blue": "#268AD2", + "magenta": "#FE13FA", + "cyan": "#29FFFE", + "white": "#C2C1C3" + } + } + }, + { + "name": "Predawn", + "colors": { + "primary": { + "background": "#282828", + "foreground": "#F1F1F1" + }, + "normal": { + "black": "#F18260", + "red": "#B51A20", + "green": "#A6CC75", + "yellow": "#FED33A", + "blue": "#81B2B1", + "magenta": "#EB6C4E", + "cyan": "#81B2B1", + "white": "#EAEAEA" + }, + "bright": { + "black": "#666666", + "red": "#FF000B", + "green": "#C4EE94", + "yellow": "#E8E06D", + "blue": "#A5EBEA", + "magenta": "#EF8A50", + "cyan": "#A5EBEA", + "white": "#FFFFFF" + } + } + }, + { + "name": "Pro", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#F2F2F2" + }, + "normal": { + "black": "#000000", + "red": "#990000", + "green": "#00A600", + "yellow": "#999900", + "blue": "#2009DB", + "magenta": "#B200B2", + "cyan": "#00A6B2", + "white": "#BFBFBF" + }, + "bright": { + "black": "#666666", + "red": "#E50000", + "green": "#00D900", + "yellow": "#E5E500", + "blue": "#0000FF", + "magenta": "#E500E5", + "cyan": "#00E5E5", + "white": "#E5E5E5" + } + } + }, + { + "name": "Purple People Eater", + "colors": { + "primary": { + "background": "#161B22", + "foreground": "#C9D1D9" + }, + "normal": { + "black": "#0D1117", + "red": "#E34C26", + "green": "#238636", + "yellow": "#ED9A51", + "blue": "#A5D6FF", + "magenta": "#6EB0E8", + "cyan": "#C09AEB", + "white": "#C9D1D9" + }, + "bright": { + "black": "#0D1117", + "red": "#FF7B72", + "green": "#3BAB4A", + "yellow": "#FFA657", + "blue": "#A5D6FF", + "magenta": "#79C0FF", + "cyan": "#B694DF", + "white": "#C9D1D9" + } + } + }, + { + "name": "Quiet", + "colors": { + "primary": { + "background": "#141414", + "foreground": "#B9B9B9" + }, + "normal": { + "black": "#141414", + "red": "#C16262", + "green": "#49B685", + "yellow": "#C5B76D", + "blue": "#4992B6", + "magenta": "#815BBE", + "cyan": "#41A4A4", + "white": "#C5C5C5" + }, + "bright": { + "black": "#505050", + "red": "#ED5E7A", + "green": "#7ECE7E", + "yellow": "#DBDB70", + "blue": "#4DBFFF", + "magenta": "#C067E4", + "cyan": "#70DBD8", + "white": "#F0F0F0" + } + } + }, + { + "name": "Red Alert", + "colors": { + "primary": { + "background": "#762423", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#D62E4E", + "green": "#71BE6B", + "yellow": "#BEB86B", + "blue": "#489BEE", + "magenta": "#E979D7", + "cyan": "#6BBEB8", + "white": "#D6D6D6" + }, + "bright": { + "black": "#262626", + "red": "#E02553", + "green": "#AFF08C", + "yellow": "#DFDDB7", + "blue": "#65AAF1", + "magenta": "#DDB7DF", + "cyan": "#B7DFDD", + "white": "#FFFFFF" + } + } + }, + { + "name": "Red Sands", + "colors": { + "primary": { + "background": "#7A251E", + "foreground": "#D7C9A7" + }, + "normal": { + "black": "#000000", + "red": "#FF3F00", + "green": "#00BB00", + "yellow": "#E7B000", + "blue": "#0072FF", + "magenta": "#BB00BB", + "cyan": "#00BBBB", + "white": "#BBBBBB" + }, + "bright": { + "black": "#555555", + "red": "#BB0000", + "green": "#00BB00", + "yellow": "#E7B000", + "blue": "#0072AE", + "magenta": "#FF55FF", + "cyan": "#55FFFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Relaxed", + "colors": { + "primary": { + "background": "#353A44", + "foreground": "#D9D9D9" + }, + "normal": { + "black": "#151515", + "red": "#BC5653", + "green": "#909D63", + "yellow": "#EBC17A", + "blue": "#6A8799", + "magenta": "#B06698", + "cyan": "#C9DFFF", + "white": "#D9D9D9" + }, + "bright": { + "black": "#636363", + "red": "#BC5653", + "green": "#A0AC77", + "yellow": "#EBC17A", + "blue": "#7EAAC7", + "magenta": "#B06698", + "cyan": "#ACBBD0", + "white": "#F7F7F7" + } + } + }, + { + "name": "Rippedcasts", + "colors": { + "primary": { + "background": "#2B2B2B", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#CDAF95", + "green": "#A8FF60", + "yellow": "#BFBB1F", + "blue": "#75A5B0", + "magenta": "#FF73FD", + "cyan": "#5A647E", + "white": "#BFBFBF" + }, + "bright": { + "black": "#666666", + "red": "#EECBAD", + "green": "#BCEE68", + "yellow": "#E5E500", + "blue": "#86BDC9", + "magenta": "#E500E5", + "cyan": "#8C9BC4", + "white": "#E5E5E5" + } + } + }, + { + "name": "Ros\u00e9 Pine Dawn", + "colors": { + "primary": { + "background": "#FAF4ED", + "foreground": "#575279" + }, + "normal": { + "black": "#F2E9E1", + "red": "#B4637A", + "green": "#56949F", + "yellow": "#EA9D34", + "blue": "#286983", + "magenta": "#907AA9", + "cyan": "#D7827E", + "white": "#575279" + }, + "bright": { + "black": "#9893A5", + "red": "#B4637A", + "green": "#56949F", + "yellow": "#EA9D34", + "blue": "#286983", + "magenta": "#907AA9", + "cyan": "#D7827E", + "white": "#575279" + } + } + }, + { + "name": "Ros\u00e9 Pine Moon", + "colors": { + "primary": { + "background": "#232136", + "foreground": "#E0DEF4" + }, + "normal": { + "black": "#393552", + "red": "#EB6F92", + "green": "#9CCFD8", + "yellow": "#F6C177", + "blue": "#3E8FB0", + "magenta": "#C4A7E7", + "cyan": "#EA9A97", + "white": "#E0DEF4" + }, + "bright": { + "black": "#6E6A86", + "red": "#EB6F92", + "green": "#9CCFD8", + "yellow": "#F6C177", + "blue": "#3E8FB0", + "magenta": "#C4A7E7", + "cyan": "#EA9A97", + "white": "#E0DEF4" + } + } + }, + { + "name": "Ros\u00e9 Pine", + "colors": { + "primary": { + "background": "#191724", + "foreground": "#E0DEF4" + }, + "normal": { + "black": "#26233A", + "red": "#EB6F92", + "green": "#9CCFD8", + "yellow": "#F6C177", + "blue": "#31748F", + "magenta": "#C4A7E7", + "cyan": "#EBBCBA", + "white": "#E0DEF4" + }, + "bright": { + "black": "#6E6A86", + "red": "#EB6F92", + "green": "#9CCFD8", + "yellow": "#F6C177", + "blue": "#31748F", + "magenta": "#C4A7E7", + "cyan": "#EBBCBA", + "white": "#E0DEF4" + } + } + }, + { + "name": "Royal", + "colors": { + "primary": { + "background": "#100815", + "foreground": "#514968" + }, + "normal": { + "black": "#241F2B", + "red": "#91284C", + "green": "#23801C", + "yellow": "#B49D27", + "blue": "#6580B0", + "magenta": "#674D96", + "cyan": "#8AAABE", + "white": "#524966" + }, + "bright": { + "black": "#312D3D", + "red": "#D5356C", + "green": "#2CD946", + "yellow": "#FDE83B", + "blue": "#90BAF9", + "magenta": "#A479E3", + "cyan": "#ACD4EB", + "white": "#9E8CBD" + } + } + }, + { + "name": "Sat", + "colors": { + "primary": { + "background": "#758480", + "foreground": "#23476A" + }, + "normal": { + "black": "#000000", + "red": "#DD0007", + "green": "#07DD00", + "yellow": "#DDD600", + "blue": "#0007DD", + "magenta": "#D600DD", + "cyan": "#00DDD6", + "white": "#F2F2F2" + }, + "bright": { + "black": "#7D7D7D", + "red": "#FF7478", + "green": "#78FF74", + "yellow": "#FFFA74", + "blue": "#7478FF", + "magenta": "#FA74FF", + "cyan": "#74FFFA", + "white": "#FFFFFF" + } + } + }, + { + "name": "Sea Shells", + "colors": { + "primary": { + "background": "#09141B", + "foreground": "#DEB88D" + }, + "normal": { + "black": "#17384C", + "red": "#D15123", + "green": "#027C9B", + "yellow": "#FCA02F", + "blue": "#1E4950", + "magenta": "#68D4F1", + "cyan": "#50A3B5", + "white": "#DEB88D" + }, + "bright": { + "black": "#434B53", + "red": "#D48678", + "green": "#628D98", + "yellow": "#FDD39F", + "blue": "#1BBCDD", + "magenta": "#BBE3EE", + "cyan": "#87ACB4", + "white": "#FEE4CE" + } + } + }, + { + "name": "Seafoam Pastel", + "colors": { + "primary": { + "background": "#243435", + "foreground": "#D4E7D4" + }, + "normal": { + "black": "#757575", + "red": "#825D4D", + "green": "#728C62", + "yellow": "#ADA16D", + "blue": "#4D7B82", + "magenta": "#8A7267", + "cyan": "#729494", + "white": "#E0E0E0" + }, + "bright": { + "black": "#8A8A8A", + "red": "#CF937A", + "green": "#98D9AA", + "yellow": "#FAE79D", + "blue": "#7AC3CF", + "magenta": "#D6B2A1", + "cyan": "#ADE0E0", + "white": "#E0E0E0" + } + } + }, + { + "name": "Selenized Black", + "colors": { + "primary": { + "background": "#181818", + "foreground": "#b9b9b9" + }, + "normal": { + "black": "#252525", + "red": "#ed4a46", + "green": "#70b433", + "yellow": "#dbb32d", + "blue": "#368aeb", + "magenta": "#eb6eb7", + "cyan": "#3fc5b7", + "white": "#777777" + }, + "bright": { + "black": "#3b3b3b", + "red": "#ff5e56", + "green": "#83c746", + "yellow": "#efc541", + "blue": "#4f9cfe", + "magenta": "#ff81ca", + "cyan": "#56d8c9", + "white": "#dedede" + } + } + }, + { + "name": "Selenized Dark", + "colors": { + "primary": { + "background": "#103c48", + "foreground": "#adbcbc" + }, + "normal": { + "black": "#184956", + "red": "#fa5750", + "green": "#75b938", + "yellow": "#dbb32d", + "blue": "#4695f7", + "magenta": "#f275be", + "cyan": "#41c7b9", + "white": "#72898f" + }, + "bright": { + "black": "#2d5b69", + "red": "#ff665c", + "green": "#84c747", + "yellow": "#ebc13d", + "blue": "#58a3ff", + "magenta": "#ff84cd", + "cyan": "#53d6c7", + "white": "#cad8d9" + } + } + }, + { + "name": "Selenized Light", + "colors": { + "primary": { + "background": "#fbf3db", + "foreground": "#53676d" + }, + "normal": { + "black": "#ece3cc", + "red": "#d2212d", + "green": "#489100", + "yellow": "#ad8900", + "blue": "#0072d4", + "magenta": "#ca4898", + "cyan": "#009c8f", + "white": "#909995" + }, + "bright": { + "black": "#d5cdb6", + "red": "#cc1729", + "green": "#428b00", + "yellow": "#a78300", + "blue": "#006dce", + "magenta": "#c44392", + "cyan": "#00978a", + "white": "#3a4d53" + } + } + }, + { + "name": "Selenized White", + "colors": { + "primary": { + "background": "#ffffff", + "foreground": "#474747" + }, + "normal": { + "black": "#ebebeb", + "red": "#d6000c", + "green": "#1d9700", + "yellow": "#c49700", + "blue": "#0064e4", + "magenta": "#dd0f9d", + "cyan": "#00ad9c", + "white": "#878787" + }, + "bright": { + "black": "#cdcdcd", + "red": "#bf0000", + "green": "#008400", + "yellow": "#af8500", + "blue": "#0054cf", + "magenta": "#c7008b", + "cyan": "#009a8a", + "white": "#282828" + } + } + }, + { + "name": "Seoul256 Light", + "colors": { + "primary": { + "background": "#dadada", + "foreground": "#4e4e4e" + }, + "normal": { + "black": "#4e4e4e", + "red": "#af5f5f", + "green": "#5f885f", + "yellow": "#af8760", + "blue": "#5f87ae", + "magenta": "#875f87", + "cyan": "#5f8787", + "white": "#e4e4e4" + }, + "bright": { + "black": "#3a3a3a", + "red": "#870100", + "green": "#005f00", + "yellow": "#d8865f", + "blue": "#0087af", + "magenta": "#87025f", + "cyan": "#008787", + "white": "#eeeeee" + } + } + }, + { + "name": "Seoul256", + "colors": { + "primary": { + "background": "#3a3a3a", + "foreground": "#d0d0d0" + }, + "normal": { + "black": "#4e4e4e", + "red": "#d68787", + "green": "#5f865f", + "yellow": "#d8af5f", + "blue": "#85add4", + "magenta": "#d7afaf", + "cyan": "#87afaf", + "white": "#d0d0d0" + }, + "bright": { + "black": "#626262", + "red": "#d75f87", + "green": "#87af87", + "yellow": "#ffd787", + "blue": "#add4fb", + "magenta": "#ffafaf", + "cyan": "#87d7d7", + "white": "#e4e4e4" + } + } + }, + { + "name": "Seti", + "colors": { + "primary": { + "background": "#111213", + "foreground": "#CACECD" + }, + "normal": { + "black": "#323232", + "red": "#C22832", + "green": "#8EC43D", + "yellow": "#E0C64F", + "blue": "#43A5D5", + "magenta": "#8B57B5", + "cyan": "#8EC43D", + "white": "#EEEEEE" + }, + "bright": { + "black": "#323232", + "red": "#C22832", + "green": "#8EC43D", + "yellow": "#E0C64F", + "blue": "#43A5D5", + "magenta": "#8B57B5", + "cyan": "#8EC43D", + "white": "#FFFFFF" + } + } + }, + { + "name": "Shaman", + "colors": { + "primary": { + "background": "#001015", + "foreground": "#405555" + }, + "normal": { + "black": "#012026", + "red": "#B2302D", + "green": "#00A941", + "yellow": "#5E8BAA", + "blue": "#449A86", + "magenta": "#00599D", + "cyan": "#5D7E19", + "white": "#405555" + }, + "bright": { + "black": "#384451", + "red": "#FF4242", + "green": "#2AEA5E", + "yellow": "#8ED4FD", + "blue": "#61D5BA", + "magenta": "#1298FF", + "cyan": "#98D028", + "white": "#58FBD6" + } + } + }, + { + "name": "Shel", + "colors": { + "primary": { + "background": "#2A201F", + "foreground": "#4882CD" + }, + "normal": { + "black": "#2C2423", + "red": "#AB2463", + "green": "#6CA323", + "yellow": "#AB6423", + "blue": "#2C64A2", + "magenta": "#6C24A2", + "cyan": "#2CA363", + "white": "#918988" + }, + "bright": { + "black": "#918988", + "red": "#F588B9", + "green": "#C2EE86", + "yellow": "#F5BA86", + "blue": "#8FBAEC", + "magenta": "#C288EC", + "cyan": "#8FEEB9", + "white": "#F5EEEC" + } + } + }, + { + "name": "Slate", + "colors": { + "primary": { + "background": "#222222", + "foreground": "#35B1D2" + }, + "normal": { + "black": "#222222", + "red": "#E2A8BF", + "green": "#81D778", + "yellow": "#C4C9C0", + "blue": "#264B49", + "magenta": "#A481D3", + "cyan": "#15AB9C", + "white": "#02C5E0" + }, + "bright": { + "black": "#FFFFFF", + "red": "#FFCDD9", + "green": "#BEFFA8", + "yellow": "#D0CCCA", + "blue": "#7AB0D2", + "magenta": "#C5A7D9", + "cyan": "#8CDFE0", + "white": "#E0E0E0" + } + } + }, + { + "name": "Smyck", + "colors": { + "primary": { + "background": "#242424", + "foreground": "#F7F7F7" + }, + "normal": { + "black": "#000000", + "red": "#C75646", + "green": "#8EB33B", + "yellow": "#D0B03C", + "blue": "#72B3CC", + "magenta": "#C8A0D1", + "cyan": "#218693", + "white": "#B0B0B0" + }, + "bright": { + "black": "#5D5D5D", + "red": "#E09690", + "green": "#CDEE69", + "yellow": "#FFE377", + "blue": "#9CD9F0", + "magenta": "#FBB1F9", + "cyan": "#77DFD8", + "white": "#F7F7F7" + } + } + }, + { + "name": "Snazzy", + "colors": { + "primary": { + "background": "#282A36", + "foreground": "#EFF0EB" + }, + "normal": { + "black": "#282A36", + "red": "#FF5C57", + "green": "#5AF78E", + "yellow": "#F3F99D", + "blue": "#57C7FF", + "magenta": "#FF6AC1", + "cyan": "#9AEDFE", + "white": "#F1F1F0" + }, + "bright": { + "black": "#686868", + "red": "#FF5C57", + "green": "#5AF78E", + "yellow": "#F3F99D", + "blue": "#57C7FF", + "magenta": "#FF6AC1", + "cyan": "#9AEDFE", + "white": "#EFF0EB" + } + } + }, + { + "name": "Soft Server", + "colors": { + "primary": { + "background": "#242626", + "foreground": "#99A3A2" + }, + "normal": { + "black": "#000000", + "red": "#A2686A", + "green": "#9AA56A", + "yellow": "#A3906A", + "blue": "#6B8FA3", + "magenta": "#6A71A3", + "cyan": "#6BA58F", + "white": "#99A3A2" + }, + "bright": { + "black": "#666C6C", + "red": "#DD5C60", + "green": "#BFDF55", + "yellow": "#DEB360", + "blue": "#62B1DF", + "magenta": "#606EDF", + "cyan": "#64E39C", + "white": "#D2E0DE" + } + } + }, + { + "name": "Solarized Darcula", + "colors": { + "primary": { + "background": "#3D3F41", + "foreground": "#D2D8D9" + }, + "normal": { + "black": "#25292A", + "red": "#F24840", + "green": "#629655", + "yellow": "#B68800", + "blue": "#2075C7", + "magenta": "#797FD4", + "cyan": "#15968D", + "white": "#D2D8D9" + }, + "bright": { + "black": "#25292A", + "red": "#F24840", + "green": "#629655", + "yellow": "#B68800", + "blue": "#2075C7", + "magenta": "#797FD4", + "cyan": "#15968D", + "white": "#D2D8D9" + } + } + }, + { + "name": "Solarized Dark Higher Contrast", + "colors": { + "primary": { + "background": "#001E27", + "foreground": "#9CC2C3" + }, + "normal": { + "black": "#002831", + "red": "#D11C24", + "green": "#6CBE6C", + "yellow": "#A57706", + "blue": "#2176C7", + "magenta": "#C61C6F", + "cyan": "#259286", + "white": "#EAE3CB" + }, + "bright": { + "black": "#006488", + "red": "#F5163B", + "green": "#51EF84", + "yellow": "#B27E28", + "blue": "#178EC8", + "magenta": "#E24D8E", + "cyan": "#00B39E", + "white": "#FCF4DC" + } + } + }, + { + "name": "Solarized Dark", + "colors": { + "primary": { + "background": "#002B36", + "foreground": "#839496" + }, + "normal": { + "black": "#073642", + "red": "#DC322F", + "green": "#859900", + "yellow": "#CF9A6B", + "blue": "#268BD2", + "magenta": "#D33682", + "cyan": "#2AA198", + "white": "#EEE8D5" + }, + "bright": { + "black": "#657B83", + "red": "#CB4B16", + "green": "#859900", + "yellow": "#CF9A6B", + "blue": "#6c71c4", + "magenta": "#D33682", + "cyan": "#2AA198", + "white": "#FDF6E3" + } + } + }, + { + "name": "Solarized Light", + "colors": { + "primary": { + "background": "#FDF6E3", + "foreground": "#657B83" + }, + "normal": { + "black": "#EEE8D5", + "red": "#DC322F", + "green": "#859900", + "yellow": "#B58900", + "blue": "#268BD2", + "magenta": "#D33682", + "cyan": "#2AA198", + "white": "#002B36" + }, + "bright": { + "black": "#657b83", + "red": "#CB4B16", + "green": "#859900", + "yellow": "#B58900", + "blue": "#6C71C4", + "magenta": "#D33682", + "cyan": "#2AA198", + "white": "#073642" + } + } + }, + { + "name": "Sonokai", + "colors": { + "primary": { + "background": "#2C2E34", + "foreground": "#E2E2E3" + }, + "normal": { + "black": "#2C2E34", + "red": "#FC5D7C", + "green": "#9ED072", + "yellow": "#E7C664", + "blue": "#F39660", + "magenta": "#B39DF3", + "cyan": "#76CCE0", + "white": "#E2E2E3" + }, + "bright": { + "black": "#7F8490", + "red": "#FC5D7C", + "green": "#9ED072", + "yellow": "#E7C664", + "blue": "#F39660", + "magenta": "#B39DF3", + "cyan": "#76CCE0", + "white": "#E2E2E3" + } + } + }, + { + "name": "Spacedust", + "colors": { + "primary": { + "background": "#0A1E24", + "foreground": "#ECF0C1" + }, + "normal": { + "black": "#6E5346", + "red": "#E35B00", + "green": "#5CAB96", + "yellow": "#E3CD7B", + "blue": "#0F548B", + "magenta": "#E35B00", + "cyan": "#06AFC7", + "white": "#F0F1CE" + }, + "bright": { + "black": "#684C31", + "red": "#FF8A3A", + "green": "#AECAB8", + "yellow": "#FFC878", + "blue": "#67A0CE", + "magenta": "#FF8A3A", + "cyan": "#83A7B4", + "white": "#FEFFF1" + } + } + }, + { + "name": "Spacegray Eighties Dull", + "colors": { + "primary": { + "background": "#222222", + "foreground": "#C9C6BC" + }, + "normal": { + "black": "#15171C", + "red": "#B24A56", + "green": "#92B477", + "yellow": "#C6735A", + "blue": "#7C8FA5", + "magenta": "#A5789E", + "cyan": "#80CDCB", + "white": "#B3B8C3" + }, + "bright": { + "black": "#555555", + "red": "#EC5F67", + "green": "#89E986", + "yellow": "#FEC254", + "blue": "#5486C0", + "magenta": "#BF83C1", + "cyan": "#58C2C1", + "white": "#FFFFFF" + } + } + }, + { + "name": "Spacegray Eighties", + "colors": { + "primary": { + "background": "#222222", + "foreground": "#BDBAAE" + }, + "normal": { + "black": "#15171C", + "red": "#EC5F67", + "green": "#81A764", + "yellow": "#FEC254", + "blue": "#5486C0", + "magenta": "#BF83C1", + "cyan": "#57C2C1", + "white": "#EFECE7" + }, + "bright": { + "black": "#555555", + "red": "#FF6973", + "green": "#93D493", + "yellow": "#FFD256", + "blue": "#4D84D1", + "magenta": "#FF55FF", + "cyan": "#83E9E4", + "white": "#FFFFFF" + } + } + }, + { + "name": "Spacegray", + "colors": { + "primary": { + "background": "#20242D", + "foreground": "#B3B8C3" + }, + "normal": { + "black": "#000000", + "red": "#B04B57", + "green": "#87B379", + "yellow": "#E5C179", + "blue": "#7D8FA4", + "magenta": "#A47996", + "cyan": "#85A7A5", + "white": "#B3B8C3" + }, + "bright": { + "black": "#000000", + "red": "#B04B57", + "green": "#87B379", + "yellow": "#E5C179", + "blue": "#7D8FA4", + "magenta": "#A47996", + "cyan": "#85A7A5", + "white": "#FFFFFF" + } + } + }, + { + "name": "Sparky", + "colors": { + "primary": { + "background": "#072B31", + "foreground": "#F4F5F0" + }, + "normal": { + "black": "#212322", + "red": "#FF585D", + "green": "#78D64B", + "yellow": "#FBDD40", + "blue": "#4698CB", + "magenta": "#D59ED7", + "cyan": "#2DCCD3", + "white": "#DEE6DE" + }, + "bright": { + "black": "#4B4F54", + "red": "#FF7276", + "green": "#8EDD65", + "yellow": "#F6EB61", + "blue": "#69B3E7", + "magenta": "#F99FC9", + "cyan": "#00C1D5", + "white": "#D9E1E2" + } + } + }, + { + "name": "Spring", + "colors": { + "primary": { + "background": "#0A1E24", + "foreground": "#ECF0C1" + }, + "normal": { + "black": "#000000", + "red": "#FF4D83", + "green": "#1F8C3B", + "yellow": "#1FC95B", + "blue": "#1DD3EE", + "magenta": "#8959A8", + "cyan": "#3E999F", + "white": "#FFFFFF" + }, + "bright": { + "black": "#000000", + "red": "#FF0021", + "green": "#1FC231", + "yellow": "#D5B807", + "blue": "#15A9FD", + "magenta": "#8959A8", + "cyan": "#3E999F", + "white": "#FFFFFF" + } + } + }, + { + "name": "Square", + "colors": { + "primary": { + "background": "#0A1E24", + "foreground": "#A1A1A1" + }, + "normal": { + "black": "#050505", + "red": "#E9897C", + "green": "#B6377D", + "yellow": "#ECEBBE", + "blue": "#A9CDEB", + "magenta": "#75507B", + "cyan": "#C9CAEC", + "white": "#F2F2F2" + }, + "bright": { + "black": "#141414", + "red": "#F99286", + "green": "#C3F786", + "yellow": "#FCFBCC", + "blue": "#B6DEFB", + "magenta": "#AD7FA8", + "cyan": "#D7D9FC", + "white": "#E2E2E2" + } + } + }, + { + "name": "Srcery", + "colors": { + "primary": { + "background": "#1C1B19", + "foreground": "#FCE8C3" + }, + "normal": { + "black": "#1C1B19", + "red": "#EF2F27", + "green": "#519F50", + "yellow": "#FBB829", + "blue": "#2C78BF", + "magenta": "#E02C6D", + "cyan": "#0AAEB3", + "white": "#BAA67F" + }, + "bright": { + "black": "#918175", + "red": "#F75341", + "green": "#98BC37", + "yellow": "#FED06E", + "blue": "#68A8E4", + "magenta": "#FF5C8F", + "cyan": "#2BE4D0", + "white": "#FCE8C3" + } + } + }, + { + "name": "Summer Pop", + "colors": { + "primary": { + "background": "#272822", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#666666", + "red": "#FF1E8E", + "green": "#8EFF1E", + "yellow": "#FFFB00", + "blue": "#1E8EFF", + "magenta": "#E500E5", + "cyan": "#00E5E5", + "white": "#E5E5E5" + }, + "bright": { + "black": "#666666", + "red": "#FF1E8E", + "green": "#8EFF1E", + "yellow": "#FFFB00", + "blue": "#1E8EFF", + "magenta": "#E500E5", + "cyan": "#00E5E5", + "white": "#E5E5E5" + } + } + }, + { + "name": "Sundried", + "colors": { + "primary": { + "background": "#1A1818", + "foreground": "#C9C9C9" + }, + "normal": { + "black": "#302B2A", + "red": "#A7463D", + "green": "#587744", + "yellow": "#9D602A", + "blue": "#485B98", + "magenta": "#864651", + "cyan": "#9C814F", + "white": "#C9C9C9" + }, + "bright": { + "black": "#4D4E48", + "red": "#AA000C", + "green": "#128C21", + "yellow": "#FC6A21", + "blue": "#7999F7", + "magenta": "#FD8AA1", + "cyan": "#FAD484", + "white": "#FFFFFF" + } + } + }, + { + "name": "Sweet Eliverlara", + "colors": { + "primary": { + "background": "#282C34", + "foreground": "#C3C7D1" + }, + "normal": { + "black": "#282C34", + "red": "#ED254E", + "green": "#71F79F", + "yellow": "#F9DC5C", + "blue": "#7CB7FF", + "magenta": "#C74DED", + "cyan": "#00C1E4", + "white": "#DCDFE4" + }, + "bright": { + "black": "#282C34", + "red": "#ED254E", + "green": "#71F79F", + "yellow": "#F9DC5C", + "blue": "#7CB7FF", + "magenta": "#C74DED", + "cyan": "#00C1E4", + "white": "#DCDFE4" + } + } + }, + { + "name": "Sweet Terminal", + "colors": { + "primary": { + "background": "#222235", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#3F3F54", + "red": "#F60055", + "green": "#06C993", + "yellow": "#9700BE", + "blue": "#F69154", + "magenta": "#EC89CB", + "cyan": "#60ADEC", + "white": "#ABB2BF" + }, + "bright": { + "black": "#959DCB", + "red": "#F60055", + "green": "#06C993", + "yellow": "#9700BE", + "blue": "#F69154", + "magenta": "#EC89CB", + "cyan": "#00DDED", + "white": "#FFFFFF" + } + } + }, + { + "name": "Symphonic", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#DC322F", + "green": "#56DB3A", + "yellow": "#FF8400", + "blue": "#0084D4", + "magenta": "#B729D9", + "cyan": "#CCCCFF", + "white": "#FFFFFF" + }, + "bright": { + "black": "#1B1D21", + "red": "#DC322F", + "green": "#56DB3A", + "yellow": "#FF8400", + "blue": "#0084D4", + "magenta": "#B729D9", + "cyan": "#CCCCFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Synthwave Alpha", + "colors": { + "primary": { + "background": "#241B30", + "foreground": "#F2F2E3" + }, + "normal": { + "black": "#241B30", + "red": "#9A0048", + "green": "#00986C", + "yellow": "#ADAD3E", + "blue": "#6E29AD", + "magenta": "#B300AD", + "cyan": "#00B0B1", + "white": "#B9B1BC" + }, + "bright": { + "black": "#7F7094", + "red": "#E60A70", + "green": "#0AE4A4", + "yellow": "#F9F972", + "blue": "#AA54F9", + "magenta": "#FF00F6", + "cyan": "#00FBFD", + "white": "#F2F2E3" + } + } + }, + { + "name": "Synthwave", + "colors": { + "primary": { + "background": "#262335", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#011627", + "red": "#FE4450", + "green": "#72F1B8", + "yellow": "#FEDE5D", + "blue": "#03EDF9", + "magenta": "#FF7EDB", + "cyan": "#03EDF9", + "white": "#FFFFFF" + }, + "bright": { + "black": "#575656", + "red": "#FE4450", + "green": "#72F1B8", + "yellow": "#FEDE5D", + "blue": "#03EDF9", + "magenta": "#FF7EDB", + "cyan": "#03EDF9", + "white": "#FFFFFF" + } + } + }, + { + "name": "Teerb", + "colors": { + "primary": { + "background": "#262626", + "foreground": "#D0D0D0" + }, + "normal": { + "black": "#1C1C1C", + "red": "#D68686", + "green": "#AED686", + "yellow": "#D7AF87", + "blue": "#86AED6", + "magenta": "#D6AED6", + "cyan": "#8ADBB4", + "white": "#D0D0D0" + }, + "bright": { + "black": "#1C1C1C", + "red": "#D68686", + "green": "#AED686", + "yellow": "#E4C9AF", + "blue": "#86AED6", + "magenta": "#D6AED6", + "cyan": "#B1E7DD", + "white": "#EFEFEF" + } + } + }, + { + "name": "Tender", + "colors": { + "primary": { + "background": "#282828", + "foreground": "#EEEEEE" + }, + "normal": { + "black": "#1D1D1D", + "red": "#C5152F", + "green": "#C9D05C", + "yellow": "#FFC24B", + "blue": "#B3DEEF", + "magenta": "#D3B987", + "cyan": "#73CEF4", + "white": "#EEEEEE" + }, + "bright": { + "black": "#323232", + "red": "#F43753", + "green": "#D9E066", + "yellow": "#FACC72", + "blue": "#C0EAFB", + "magenta": "#EFD093", + "cyan": "#A1D6EC", + "white": "#FFFFFF" + } + } + }, + { + "name": "Terminal Basic", + "colors": { + "primary": { + "background": "#ffffff", + "foreground": "#000000" + }, + "normal": { + "black": "#000000", + "red": "#990000", + "green": "#00a600", + "yellow": "#999900", + "blue": "#0000b2", + "magenta": "#b200b2", + "cyan": "#00a6b2", + "white": "#bfbfbf" + }, + "bright": { + "black": "#666666", + "red": "#e50000", + "green": "#00d900", + "yellow": "#e5e500", + "blue": "#0000ff", + "magenta": "#e500e5", + "cyan": "#00e5e5", + "white": "#e5e5e5" + } + } + }, + { + "name": "Terminix Dark", + "colors": { + "primary": { + "background": "#091116", + "foreground": "#868A8C" + }, + "normal": { + "black": "#282A2E", + "red": "#A54242", + "green": "#A1B56C", + "yellow": "#DE935F", + "blue": "#225555", + "magenta": "#85678F", + "cyan": "#5E8D87", + "white": "#777777" + }, + "bright": { + "black": "#373B41", + "red": "#C63535", + "green": "#608360", + "yellow": "#FA805A", + "blue": "#449DA1", + "magenta": "#BA8BAF", + "cyan": "#86C1B9", + "white": "#C5C8C6" + } + } + }, + { + "name": "Thayer Bright", + "colors": { + "primary": { + "background": "#1B1D1E", + "foreground": "#F8F8F8" + }, + "normal": { + "black": "#1B1D1E", + "red": "#F92672", + "green": "#4DF840", + "yellow": "#F4FD22", + "blue": "#2757D6", + "magenta": "#8C54FE", + "cyan": "#38C8B5", + "white": "#CCCCC6" + }, + "bright": { + "black": "#505354", + "red": "#FF5995", + "green": "#B6E354", + "yellow": "#FEED6C", + "blue": "#3F78FF", + "magenta": "#9E6FFE", + "cyan": "#23CFD5", + "white": "#F8F8F2" + } + } + }, + { + "name": "Tin", + "colors": { + "primary": { + "background": "#2E2E35", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#000000", + "red": "#8D534E", + "green": "#4E8D53", + "yellow": "#888D4E", + "blue": "#534E8D", + "magenta": "#8D4E88", + "cyan": "#4E888D", + "white": "#FFFFFF" + }, + "bright": { + "black": "#000000", + "red": "#B57D78", + "green": "#78B57D", + "yellow": "#B0B578", + "blue": "#7D78B5", + "magenta": "#B578B0", + "cyan": "#78B0B5", + "white": "#FFFFFF" + } + } + }, + { + "name": "Tokyo Night Light", + "colors": { + "primary": { + "background": "#D5D6DB", + "foreground": "#565A6E" + }, + "normal": { + "black": "#0F0F14", + "red": "#8C4351", + "green": "#485E30", + "yellow": "#8F5E15", + "blue": "#34548A", + "magenta": "#5A4A78", + "cyan": "#0F4B6E", + "white": "#343B58" + }, + "bright": { + "black": "#9699A3", + "red": "#8C4351", + "green": "#485E30", + "yellow": "#8F5E15", + "blue": "#34548A", + "magenta": "#5A4A78", + "cyan": "#0F4B6E", + "white": "#343B58" + } + } + }, + { + "name": "Tokyo Night Storm", + "colors": { + "primary": { + "background": "#24283B", + "foreground": "#C0CAF5" + }, + "normal": { + "black": "#414868", + "red": "#F7768E", + "green": "#9ECE6A", + "yellow": "#E0AF68", + "blue": "#7AA2F7", + "magenta": "#BB9AF7", + "cyan": "#7DCFFF", + "white": "#C0CAF5" + }, + "bright": { + "black": "#414868", + "red": "#F7768E", + "green": "#9ECE6A", + "yellow": "#E0AF68", + "blue": "#7AA2F7", + "magenta": "#BB9AF7", + "cyan": "#7DCFFF", + "white": "#C0CAF5" + } + } + }, + { + "name": "Tokyo Night", + "colors": { + "primary": { + "background": "#1A1B26", + "foreground": "#C0CAF5" + }, + "normal": { + "black": "#414868", + "red": "#F7768E", + "green": "#9ECE6A", + "yellow": "#E0AF68", + "blue": "#7AA2F7", + "magenta": "#BB9AF7", + "cyan": "#7DCFFF", + "white": "#A9B1D6" + }, + "bright": { + "black": "#414868", + "red": "#F7768E", + "green": "#9ECE6A", + "yellow": "#E0AF68", + "blue": "#7AA2F7", + "magenta": "#BB9AF7", + "cyan": "#7DCFFF", + "white": "#C0CAF5" + } + } + }, + { + "name": "Tomorrow Night Blue", + "colors": { + "primary": { + "background": "#002451", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#00346E", + "red": "#FF9DA4", + "green": "#D1F1A9", + "yellow": "#FFEEAD", + "blue": "#BBDAFF", + "magenta": "#EBBBFF", + "cyan": "#99FFFF", + "white": "#FFFFFF" + }, + "bright": { + "black": "#7285B7", + "red": "#FF9DA4", + "green": "#D1F1A9", + "yellow": "#FFEEAD", + "blue": "#BBDAFF", + "magenta": "#EBBBFF", + "cyan": "#99FFFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Tomorrow Night Bright", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#EAEAEA" + }, + "normal": { + "black": "#2A2A2A", + "red": "#D54E53", + "green": "#B9CA4A", + "yellow": "#E7C547", + "blue": "#7AA6DA", + "magenta": "#C397D8", + "cyan": "#70C0B1", + "white": "#EAEAEA" + }, + "bright": { + "black": "#969896", + "red": "#D54E53", + "green": "#B9CA4A", + "yellow": "#E7C547", + "blue": "#7AA6DA", + "magenta": "#C397D8", + "cyan": "#70C0B1", + "white": "#FFFFFF" + } + } + }, + { + "name": "Tomorrow Night Eighties", + "colors": { + "primary": { + "background": "#2D2D2D", + "foreground": "#CCCCCC" + }, + "normal": { + "black": "#393939", + "red": "#F2777A", + "green": "#99CC99", + "yellow": "#FFCC66", + "blue": "#6699CC", + "magenta": "#CC99CC", + "cyan": "#66CCCC", + "white": "#CCCCCC" + }, + "bright": { + "black": "#999999", + "red": "#F2777A", + "green": "#99CC99", + "yellow": "#FFCC66", + "blue": "#6699CC", + "magenta": "#CC99CC", + "cyan": "#66CCCC", + "white": "#FFFFFF" + } + } + }, + { + "name": "Tomorrow Night", + "colors": { + "primary": { + "background": "#1D1F21", + "foreground": "#C5C8C6" + }, + "normal": { + "black": "#282A2E", + "red": "#CC6666", + "green": "#B5BD68", + "yellow": "#F0C674", + "blue": "#81A2BE", + "magenta": "#B294BB", + "cyan": "#8ABEB7", + "white": "#C5C8C6" + }, + "bright": { + "black": "#969896", + "red": "#CC6666", + "green": "#B5BD68", + "yellow": "#F0C674", + "blue": "#81A2BE", + "magenta": "#B294BB", + "cyan": "#8ABEB7", + "white": "#FFFFFF" + } + } + }, + { + "name": "Tomorrow", + "colors": { + "primary": { + "background": "#FFFFFF", + "foreground": "#4D4D4C" + }, + "normal": { + "black": "#E0E0E0", + "red": "#C82829", + "green": "#718C00", + "yellow": "#EAB700", + "blue": "#4271AE", + "magenta": "#8959A8", + "cyan": "#3E999F", + "white": "#4D4D4C" + }, + "bright": { + "black": "#8E908C", + "red": "#C82829", + "green": "#718C00", + "yellow": "#EAB700", + "blue": "#4271AE", + "magenta": "#8959A8", + "cyan": "#3E999F", + "white": "#1D1F21" + } + } + }, + { + "name": "Toy Chest", + "colors": { + "primary": { + "background": "#24364B", + "foreground": "#31D07B" + }, + "normal": { + "black": "#2C3F58", + "red": "#BE2D26", + "green": "#1A9172", + "yellow": "#DB8E27", + "blue": "#325D96", + "magenta": "#8A5EDC", + "cyan": "#35A08F", + "white": "#23D183" + }, + "bright": { + "black": "#336889", + "red": "#DD5944", + "green": "#31D07B", + "yellow": "#E7D84B", + "blue": "#34A6DA", + "magenta": "#AE6BDC", + "cyan": "#42C3AE", + "white": "#D5D5D5" + } + } + }, + { + "name": "Treehouse", + "colors": { + "primary": { + "background": "#191919", + "foreground": "#786B53" + }, + "normal": { + "black": "#321300", + "red": "#B2270E", + "green": "#44A900", + "yellow": "#AA820C", + "blue": "#58859A", + "magenta": "#97363D", + "cyan": "#B25A1E", + "white": "#786B53" + }, + "bright": { + "black": "#433626", + "red": "#ED5D20", + "green": "#55F238", + "yellow": "#F2B732", + "blue": "#85CFED", + "magenta": "#E14C5A", + "cyan": "#F07D14", + "white": "#FFC800" + } + } + }, + { + "name": "Twilight", + "colors": { + "primary": { + "background": "#141414", + "foreground": "#FFFFD4" + }, + "normal": { + "black": "#141414", + "red": "#C06D44", + "green": "#AFB97A", + "yellow": "#C2A86C", + "blue": "#44474A", + "magenta": "#B4BE7C", + "cyan": "#778385", + "white": "#FFFFD4" + }, + "bright": { + "black": "#262626", + "red": "#DE7C4C", + "green": "#CCD88C", + "yellow": "#E2C47E", + "blue": "#5A5E62", + "magenta": "#D0DC8E", + "cyan": "#8A989B", + "white": "#FFFFD4" + } + } + }, + { + "name": "Ura", + "colors": { + "primary": { + "background": "#FEFFEE", + "foreground": "#23476A" + }, + "normal": { + "black": "#000000", + "red": "#C21B6F", + "green": "#6FC21B", + "yellow": "#C26F1B", + "blue": "#1B6FC2", + "magenta": "#6F1BC2", + "cyan": "#1BC26F", + "white": "#808080" + }, + "bright": { + "black": "#808080", + "red": "#EE84B9", + "green": "#B9EE84", + "yellow": "#EEB984", + "blue": "#84B9EE", + "magenta": "#B984EE", + "cyan": "#84EEB9", + "white": "#E5E5E5" + } + } + }, + { + "name": "Urple", + "colors": { + "primary": { + "background": "#1B1B23", + "foreground": "#877A9B" + }, + "normal": { + "black": "#000000", + "red": "#B0425B", + "green": "#37A415", + "yellow": "#AD5C42", + "blue": "#564D9B", + "magenta": "#6C3CA1", + "cyan": "#808080", + "white": "#87799C" + }, + "bright": { + "black": "#5D3225", + "red": "#FF6388", + "green": "#29E620", + "yellow": "#F08161", + "blue": "#867AED", + "magenta": "#A05EEE", + "cyan": "#EAEAEA", + "white": "#BFA3FF" + } + } + }, + { + "name": "Vag", + "colors": { + "primary": { + "background": "#191F1D", + "foreground": "#D9E6F2" + }, + "normal": { + "black": "#303030", + "red": "#A87139", + "green": "#39A871", + "yellow": "#71A839", + "blue": "#7139A8", + "magenta": "#A83971", + "cyan": "#3971A8", + "white": "#8A8A8A" + }, + "bright": { + "black": "#494949", + "red": "#B0763B", + "green": "#3BB076", + "yellow": "#76B03B", + "blue": "#763BB0", + "magenta": "#B03B76", + "cyan": "#3B76B0", + "white": "#CFCFCF" + } + } + }, + { + "name": "Vaughn", + "colors": { + "primary": { + "background": "#25234F", + "foreground": "#DCDCCC" + }, + "normal": { + "black": "#25234F", + "red": "#705050", + "green": "#60B48A", + "yellow": "#DFAF8F", + "blue": "#5555FF", + "magenta": "#F08CC3", + "cyan": "#8CD0D3", + "white": "#709080" + }, + "bright": { + "black": "#709080", + "red": "#DCA3A3", + "green": "#60B48A", + "yellow": "#F0DFAF", + "blue": "#5555FF", + "magenta": "#EC93D3", + "cyan": "#93E0E3", + "white": "#FFFFFF" + } + } + }, + { + "name": "Vibrant Ink", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#FFFFFF" + }, + "normal": { + "black": "#878787", + "red": "#FF6600", + "green": "#CCFF04", + "yellow": "#FFCC00", + "blue": "#44B4CC", + "magenta": "#9933CC", + "cyan": "#44B4CC", + "white": "#F5F5F5" + }, + "bright": { + "black": "#555555", + "red": "#FF0000", + "green": "#00FF00", + "yellow": "#FFFF00", + "blue": "#0000FF", + "magenta": "#FF00FF", + "cyan": "#00FFFF", + "white": "#E5E5E5" + } + } + }, + { + "name": "Vs Code Dark+", + "colors": { + "primary": { + "background": "#1E1E1E", + "foreground": "#CCCCCC" + }, + "normal": { + "black": "#6A787A", + "red": "#E9653B", + "green": "#39E9A8", + "yellow": "#E5B684", + "blue": "#44AAE6", + "magenta": "#E17599", + "cyan": "#3DD5E7", + "white": "#C3DDE1" + }, + "bright": { + "black": "#598489", + "red": "#E65029", + "green": "#00FF9A", + "yellow": "#E89440", + "blue": "#009AFB", + "magenta": "#FF578F", + "cyan": "#5FFFFF", + "white": "#D9FBFF" + } + } + }, + { + "name": "Vs Code Light+", + "colors": { + "primary": { + "background": "#F9F9F9", + "foreground": "#020202" + }, + "normal": { + "black": "#020202", + "red": "#CD3232", + "green": "#00BC00", + "yellow": "#A5A900", + "blue": "#0752A8", + "magenta": "#BC05BC", + "cyan": "#0598BC", + "white": "#343434" + }, + "bright": { + "black": "#5E5E5E", + "red": "#CD3333", + "green": "#1BCE1A", + "yellow": "#ADBB5B", + "blue": "#0752A8", + "magenta": "#C451CE", + "cyan": "#52A8C7", + "white": "#A6A3A6" + } + } + }, + { + "name": "Warm Neon", + "colors": { + "primary": { + "background": "#404040", + "foreground": "#AFDAB6" + }, + "normal": { + "black": "#000000", + "red": "#E24346", + "green": "#39B13A", + "yellow": "#DAE145", + "blue": "#4261C5", + "magenta": "#F920FB", + "cyan": "#2ABBD4", + "white": "#D0B8A3" + }, + "bright": { + "black": "#FEFCFC", + "red": "#E97071", + "green": "#9CC090", + "yellow": "#DDDA7A", + "blue": "#7B91D6", + "magenta": "#F674BA", + "cyan": "#5ED1E5", + "white": "#D8C8BB" + } + } + }, + { + "name": "Website", + "colors": { + "primary": { + "background": "#132f35", + "foreground": "#d1b890" + }, + "normal": { + "black": "#183c44", + "red": "#da4949", + "green": "#bcca15", + "yellow": "#ffb02e", + "blue": "#35a6e6", + "magenta": "#d343a2", + "cyan": "#38c995", + "white": "#ffe8c1" + }, + "bright": { + "black": "#235662", + "red": "#ff5757", + "green": "#ecff14", + "yellow": "#ffd694", + "blue": "#4cbfff", + "magenta": "#ff4cc2", + "cyan": "#35ffb6", + "white": "#ffd48f" + } + } + }, + { + "name": "Wez", + "colors": { + "primary": { + "background": "#000000", + "foreground": "#B3B3B3" + }, + "normal": { + "black": "#000000", + "red": "#CC5555", + "green": "#55CC55", + "yellow": "#CDCD55", + "blue": "#5555CC", + "magenta": "#CC55CC", + "cyan": "#7ACACA", + "white": "#CCCCCC" + }, + "bright": { + "black": "#555555", + "red": "#FF5555", + "green": "#55FF55", + "yellow": "#FFFF55", + "blue": "#5555FF", + "magenta": "#FF55FF", + "cyan": "#55FFFF", + "white": "#FFFFFF" + } + } + }, + { + "name": "Wild Cherry", + "colors": { + "primary": { + "background": "#1F1726", + "foreground": "#DAFAFF" + }, + "normal": { + "black": "#000507", + "red": "#D94085", + "green": "#2AB250", + "yellow": "#FFD16F", + "blue": "#883CDC", + "magenta": "#ECECEC", + "cyan": "#C1B8B7", + "white": "#FFF8DE" + }, + "bright": { + "black": "#009CC9", + "red": "#DA6BAC", + "green": "#F4DCA5", + "yellow": "#EAC066", + "blue": "#308CBA", + "magenta": "#AE636B", + "cyan": "#FF919D", + "white": "#E4838D" + } + } + }, + { + "name": "Wombat", + "colors": { + "primary": { + "background": "#171717", + "foreground": "#DEDACF" + }, + "normal": { + "black": "#000000", + "red": "#FF615A", + "green": "#B1E969", + "yellow": "#EBD99C", + "blue": "#5DA9F6", + "magenta": "#E86AFF", + "cyan": "#82FFF7", + "white": "#DEDACF" + }, + "bright": { + "black": "#313131", + "red": "#F58C80", + "green": "#DDF88F", + "yellow": "#EEE5B2", + "blue": "#A5C7FF", + "magenta": "#DDAAFF", + "cyan": "#B7FFF9", + "white": "#FFFFFF" + } + } + }, + { + "name": "Wryan", + "colors": { + "primary": { + "background": "#101010", + "foreground": "#999993" + }, + "normal": { + "black": "#333333", + "red": "#8C4665", + "green": "#287373", + "yellow": "#7C7C99", + "blue": "#395573", + "magenta": "#5E468C", + "cyan": "#31658C", + "white": "#899CA1" + }, + "bright": { + "black": "#3D3D3D", + "red": "#BF4D80", + "green": "#53A6A6", + "yellow": "#9E9ECB", + "blue": "#477AB3", + "magenta": "#7E62B3", + "cyan": "#6096BF", + "white": "#C0C0C0" + } + } + }, + { + "name": "Wzoreck", + "colors": { + "primary": { + "background": "#424043", + "foreground": "#FCFCFA" + }, + "normal": { + "black": "#2E3436", + "red": "#FC6386", + "green": "#A9DC76", + "yellow": "#FCE94F", + "blue": "#FB976B", + "magenta": "#75507B", + "cyan": "#34E2E2", + "white": "#FFFFFF" + }, + "bright": { + "black": "#989595", + "red": "#FC6386", + "green": "#A9DC76", + "yellow": "#FCE94F", + "blue": "#FB976B", + "magenta": "#AB9DF2", + "cyan": "#34E2E2", + "white": "#D1D1C0" + } + } + }, + { + "name": "Zenburn", + "colors": { + "primary": { + "background": "#3a3a3a", + "foreground": "#dcdccc" + }, + "normal": { + "black": "#333333", + "red": "#cc9393", + "green": "#efef87", + "yellow": "#ffd7a7", + "blue": "#c3bf97", + "magenta": "#bca3a3", + "cyan": "#93b3a3", + "white": "#f0efd0" + }, + "bright": { + "black": "#757575", + "red": "#dfaf87", + "green": "#ffff87", + "yellow": "#ffcfaf", + "blue": "#d7d7af", + "magenta": "#d7afaf", + "cyan": "#93bea3", + "white": "#dcdccc" + } + } + } +] \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 7d46ca4..69cabad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "version": "0.1.0", "dependencies": { "next": "14.2.8", + "prism-react-renderer": "^2.4.0", "react": "^18", "react-dom": "^18" }, @@ -507,6 +508,12 @@ "undici-types": "~6.19.2" } }, + "node_modules/@types/prismjs": { + "version": "1.26.4", + "resolved": "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.4.tgz", + "integrity": "sha512-rlAnzkW2sZOjbqZ743IHUhFcvzaGbqijwOu8QZnZCjfQzBqFE3s4lOTJEsxikImav9uzz/42I+O7YUs1mWgMlg==", + "license": "MIT" + }, "node_modules/@types/prop-types": { "version": "15.7.12", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", @@ -1271,6 +1278,15 @@ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", "license": "MIT" }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -4128,6 +4144,19 @@ "node": ">= 0.8.0" } }, + "node_modules/prism-react-renderer": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.4.0.tgz", + "integrity": "sha512-327BsVCD/unU4CNLZTWVHyUHKnsqcvj2qbPlQ8MiBE2eq2rgctjigPA1Gp9HLF83kZ20zNN6jgizHJeEsyFYOw==", + "license": "MIT", + "dependencies": { + "@types/prismjs": "^1.26.0", + "clsx": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.0.0" + } + }, "node_modules/prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", diff --git a/package.json b/package.json index 2bc8331..1fbf048 100644 --- a/package.json +++ b/package.json @@ -9,18 +9,19 @@ "lint": "next lint" }, "dependencies": { + "next": "14.2.8", + "prism-react-renderer": "^2.4.0", "react": "^18", - "react-dom": "^18", - "next": "14.2.8" + "react-dom": "^18" }, "devDependencies": { - "typescript": "^5", "@types/node": "^20", "@types/react": "^18", "@types/react-dom": "^18", + "eslint": "^8", + "eslint-config-next": "14.2.8", "postcss": "^8", "tailwindcss": "^3.4.1", - "eslint": "^8", - "eslint-config-next": "14.2.8" + "typescript": "^5" } } diff --git a/tailwind.config.ts b/tailwind.config.ts index d43da91..7279c9f 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -12,6 +12,15 @@ const config: Config = { background: "var(--background)", foreground: "var(--foreground)", }, + animation: { + float: 'float 3s ease-in-out infinite', + }, + keyframes: { + float: { + '0%, 100%': { transform: 'translateY(0)' }, + '50%': { transform: 'translateY(-10px)' }, + } + } }, }, plugins: [], diff --git a/themes_downloader.py b/themes_downloader.py new file mode 100644 index 0000000..885149c --- /dev/null +++ b/themes_downloader.py @@ -0,0 +1,75 @@ +import requests +import json + +# Base URL for the Gogh JSON files in the GitHub repository +base_url = "https://raw.githubusercontent.com/Gogh-Co/Gogh/master/json/" + +# GitHub API URL to list the contents of the "json" directory +api_url = "https://api.github.com/repos/Gogh-Co/Gogh/contents/json" + +# Function to scrape all theme filenames from the GitHub API +def fetch_theme_filenames(): + response = requests.get(api_url) + if response.status_code == 200: + files = response.json() + # Filter JSON files and return their names + return [file["name"] for file in files if file["name"].endswith(".json")] + else: + print(f"Failed to fetch theme filenames from GitHub API, status code: {response.status_code}") + return [] + +# Helper function to map Gogh colors to the desired format +def map_theme_colors(theme_data): + return { + "name": theme_data.get("name", "Unknown Theme"), + "colors": { + "primary": { + "background": theme_data.get("background", "#000000"), + "foreground": theme_data.get("foreground", "#FFFFFF"), + }, + "normal": { + "black": theme_data.get("color_01", "#000000"), + "red": theme_data.get("color_02", "#000000"), + "green": theme_data.get("color_03", "#000000"), + "yellow": theme_data.get("color_04", "#000000"), + "blue": theme_data.get("color_05", "#000000"), + "magenta": theme_data.get("color_06", "#000000"), + "cyan": theme_data.get("color_07", "#000000"), + "white": theme_data.get("color_08", "#000000"), + }, + "bright": { + "black": theme_data.get("color_09", "#000000"), + "red": theme_data.get("color_10", "#000000"), + "green": theme_data.get("color_11", "#000000"), + "yellow": theme_data.get("color_12", "#000000"), + "blue": theme_data.get("color_13", "#000000"), + "magenta": theme_data.get("color_14", "#000000"), + "cyan": theme_data.get("color_15", "#000000"), + "white": theme_data.get("color_16", "#000000"), + } + } + } + +# List to hold all the themes +themes = [] + +# Fetch all theme filenames from the GitHub API +theme_filenames = fetch_theme_filenames() + +# Loop through the list of theme filenames and fetch each theme +for filename in theme_filenames: + theme_url = base_url + filename + response = requests.get(theme_url) + if response.status_code == 200: + theme_data = response.json() + formatted_theme = map_theme_colors(theme_data) + themes.append(formatted_theme) + else: + print(f"Failed to fetch {filename}") + +# Output the formatted themes as a JSON array +output_file = "formatted_themes.json" +with open(output_file, "w") as out_file: + json.dump(themes, out_file, indent=2) + +print(f"Formatted themes saved to {output_file}")