diff options
author | Devine Lu Linvega <[email protected]> | 2018-11-25 14:42:04 +1200 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2018-11-25 14:42:04 +1200 |
commit | 790d589eb7460b28a1194b36b683ac7b1c422916 (patch) | |
tree | 926d62333ae6bfed9af9d71bac784740b548941a /desktop/sources | |
parent | 310318bb2b055628cb7a6889f57ee6c52c22814a (diff) | |
download | Orca-790d589eb7460b28a1194b36b683ac7b1c422916.tar.gz Orca-790d589eb7460b28a1194b36b683ac7b1c422916.zip |
Cursor Highlight
Diffstat (limited to 'desktop/sources')
-rw-r--r-- | desktop/sources/scripts/terminal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/sources/scripts/terminal.js b/desktop/sources/scripts/terminal.js index 4504e05..3110fd3 100644 --- a/desktop/sources/scripts/terminal.js +++ b/desktop/sources/scripts/terminal.js @@ -11,7 +11,7 @@ function Terminal (orca, tile = { w: 20, h: 30 }) { this.controller = new Controller() // Themes - const noir = { background: '#111111', f_high: '#ffffff', f_med: '#777777', f_low: '#444444', f_inv: '#000000', b_high: '#eeeeee', b_med: '#72dec2', b_low: '#444444', b_inv: '#ffffff' } + const noir = { background: '#111111', f_high: '#ffffff', f_med: '#777777', f_low: '#444444', f_inv: '#000000', b_high: '#eeeeee', b_med: '#72dec2', b_low: '#444444', b_inv: '#ffb545' } const pale = { background: '#eeeeee', f_high: '#222222', f_med: '#444444', f_low: '#cccccc', f_inv: '#000000', b_high: '#000000', b_med: '#333333', b_low: '#dddddd', b_inv: '#72dec2' } this.theme = new Theme(noir, pale) |