mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
Change default colors (#2670)
This commit is contained in:
parent
b73a328b6b
commit
8ebdaebdfa
2 changed files with 30 additions and 30 deletions
|
|
@ -69,21 +69,21 @@ module.exports = {
|
||||||
// an array here instead of a color map object
|
// an array here instead of a color map object
|
||||||
colors: {
|
colors: {
|
||||||
black: '#000000',
|
black: '#000000',
|
||||||
red: '#ff0000',
|
red: '#C51E14',
|
||||||
green: '#33ff00',
|
green: '#1DC121',
|
||||||
yellow: '#ffff00',
|
yellow: '#C7C329',
|
||||||
blue: '#0066ff',
|
blue: '#0A2FC4',
|
||||||
magenta: '#cc00ff',
|
magenta: '#C839C5',
|
||||||
cyan: '#00ffff',
|
cyan: '#20C5C6',
|
||||||
white: '#d0d0d0',
|
white: '#C7C7C7',
|
||||||
lightBlack: '#808080',
|
lightBlack: '#686868',
|
||||||
lightRed: '#ff0000',
|
lightRed: '#FD6F6B',
|
||||||
lightGreen: '#33ff00',
|
lightGreen: '#67F86F',
|
||||||
lightYellow: '#ffff00',
|
lightYellow: '#FFFA72',
|
||||||
lightBlue: '#0066ff',
|
lightBlue: '#6A76FB',
|
||||||
lightMagenta: '#cc00ff',
|
lightMagenta: '#FD7CFC',
|
||||||
lightCyan: '#00ffff',
|
lightCyan: '#68FDFE',
|
||||||
lightWhite: '#ffffff',
|
lightWhite: '#FFFFFF',
|
||||||
},
|
},
|
||||||
|
|
||||||
// the shell to run when spawning a new session (i.e. /usr/local/bin/fish)
|
// the shell to run when spawning a new session (i.e. /usr/local/bin/fish)
|
||||||
|
|
|
||||||
|
|
@ -54,21 +54,21 @@ const initial = Immutable({
|
||||||
resizeAt: 0,
|
resizeAt: 0,
|
||||||
colors: {
|
colors: {
|
||||||
black: '#000000',
|
black: '#000000',
|
||||||
red: '#ff0000',
|
red: '#C51E14',
|
||||||
green: '#33ff00',
|
green: '#1DC121',
|
||||||
yellow: '#ffff00',
|
yellow: '#C7C329',
|
||||||
blue: '#0066ff',
|
blue: '#0A2FC4',
|
||||||
magenta: '#cc00ff',
|
magenta: '#C839C5',
|
||||||
cyan: '#00ffff',
|
cyan: '#20C5C6',
|
||||||
white: '#d0d0d0',
|
white: '#C7C7C7',
|
||||||
lightBlack: '#808080',
|
lightBlack: '#686868',
|
||||||
lightRed: '#ff0000',
|
lightRed: '#FD6F6B',
|
||||||
lightGreen: '#33ff00',
|
lightGreen: '#67F86F',
|
||||||
lightYellow: '#ffff00',
|
lightYellow: '#FFFA72',
|
||||||
lightBlue: '#0066ff',
|
lightBlue: '#6A76FB',
|
||||||
lightMagenta: '#cc00ff',
|
lightMagenta: '#FD7CFC',
|
||||||
lightCyan: '#00ffff',
|
lightCyan: '#68FDFE',
|
||||||
lightWhite: '#ffffff'
|
lightWhite: '#FFFFFF'
|
||||||
},
|
},
|
||||||
activityMarkers: {},
|
activityMarkers: {},
|
||||||
notifications: {
|
notifications: {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue