Skip to content

Commit

Permalink
feat: Update terminal color
Browse files Browse the repository at this point in the history
  • Loading branch information
masterodi committed Nov 9, 2023
1 parent 2472e79 commit 0566ca2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A dark theme.",
"type": "module",
"publisher": "mrheio",
"version": "16.1.0",
"version": "16.2.0",
"icon": "icon.png",
"engines": {
"vscode": "^1.7.0"
Expand Down
15 changes: 10 additions & 5 deletions src/themes/atomic.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const atomicTheme = {
foreground: foreground,
errorForeground: '#FF4B82',
'activityBar.background': blocksBg,
'activityBar.foreground': foreground,
'activityBar.foreground': Color(foreground).lighten(0.25).hex(),
'activityBar.border': colors.transparent,
'activityBarBadge.background': accent,
'activityBarBadge.foreground': colors.white,
Expand All @@ -43,8 +43,12 @@ const atomicTheme = {
'editor.selectionBackground': '#FFB86C40',
'editor.inactiveSelectionBackground': '#FFB86C40',
'editor.selectionHighlightBackground': '#FFB86C40',
'editor.wordHighlightBackground': '#FFCC9560',
'editor.wordHighlightStrongBackground': '#FF9AC170',
'editor.wordHighlightBackground': `${Color(editorBg)
.lighten(1.5)
.hex()}aa`,
'editor.wordHighlightStrongBackground': `${Color(editorBg)
.lighten(1)
.hex()}77`,
'editor.findMatchBackground': '#B084EB90',
'editor.findMatchHighlightBackground': '#FFB86C40',
'editor.lineHighlightBackground': `${Color(editorBg)
Expand Down Expand Up @@ -146,13 +150,14 @@ const atomicTheme = {
'tab.inactiveForeground': foreground,
'editorGroupHeader.tabsBackground': blocksBg,
// terminal styles
'panel.background': blocksBg,
'terminalCursor.background': foreground,
'terminalCursor.foreground': Color(foreground).darken(0.35).hex(),
// terminal colors
'terminal.ansiBlack': '#414868',
'terminal.ansiRed': '#f7768e',
'terminal.ansiGreen': '#73daca',
'terminal.ansiYellow': '#e0af68',
'terminal.ansiYellow': '#E3B777',
'terminal.ansiBlue': '#7aa2f7',
'terminal.ansiMagenta': '#bb9af7',
'terminal.ansiCyan': '#7dcfff',
Expand All @@ -166,7 +171,7 @@ const atomicTheme = {
'terminal.ansiBrightCyan': '#7dcfff',
'terminal.ansiBrightWhite': '#a9b1d6',
// git
'gitDecoration.modifiedResourceForeground': '#6183bb',
'gitDecoration.modifiedResourceForeground': '#84b2ff',
'gitDecoration.ignoredResourceForeground': '#545c7e',
'gitDecoration.deletedResourceForeground': '#914c54',
'gitDecoration.renamedResourceForeground': '#449dab',
Expand Down
11 changes: 6 additions & 5 deletions themes/Darkit-Atomic.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"foreground": "#9ca3b3",
"errorForeground": "#FF4B82",
"activityBar.background": "#151920",
"activityBar.foreground": "#9ca3b3",
"activityBar.foreground": "#CBCFD7",
"activityBar.border": "#00000000",
"activityBarBadge.background": "#6084f1",
"activityBarBadge.foreground": "#fff",
Expand All @@ -31,8 +31,8 @@
"editor.selectionBackground": "#FFB86C40",
"editor.inactiveSelectionBackground": "#FFB86C40",
"editor.selectionHighlightBackground": "#FFB86C40",
"editor.wordHighlightBackground": "#FFCC9560",
"editor.wordHighlightStrongBackground": "#FF9AC170",
"editor.wordHighlightBackground": "#495573aa",
"editor.wordHighlightStrongBackground": "#3A445C77",
"editor.findMatchBackground": "#B084EB90",
"editor.findMatchHighlightBackground": "#FFB86C40",
"editor.lineHighlightBackground": "#2C334577",
Expand Down Expand Up @@ -122,12 +122,13 @@
"tab.inactiveBackground": "#151920",
"tab.inactiveForeground": "#9ca3b3",
"editorGroupHeader.tabsBackground": "#151920",
"panel.background": "#151920",
"terminalCursor.background": "#9ca3b3",
"terminalCursor.foreground": "#5F677B",
"terminal.ansiBlack": "#414868",
"terminal.ansiRed": "#f7768e",
"terminal.ansiGreen": "#73daca",
"terminal.ansiYellow": "#e0af68",
"terminal.ansiYellow": "#E3B777",
"terminal.ansiBlue": "#7aa2f7",
"terminal.ansiMagenta": "#bb9af7",
"terminal.ansiCyan": "#7dcfff",
Expand All @@ -140,7 +141,7 @@
"terminal.ansiBrightMagenta": "#bb9af7",
"terminal.ansiBrightCyan": "#7dcfff",
"terminal.ansiBrightWhite": "#a9b1d6",
"gitDecoration.modifiedResourceForeground": "#6183bb",
"gitDecoration.modifiedResourceForeground": "#84b2ff",
"gitDecoration.deletedResourceForeground": "#914c54",
"gitDecoration.renamedResourceForeground": "#449dab",
"gitDecoration.addedResourceForeground": "#449dab",
Expand Down

0 comments on commit 0566ca2

Please sign in to comment.