summaryrefslogtreecommitdiffstats
path: root/colorschemes
diff options
context:
space:
mode:
authorQuan Tong <quantonganh@gmail.com>2022-03-26 15:09:34 +0700
committerQuan Tong <quantonganh@gmail.com>2022-03-26 15:09:34 +0700
commit3f903c796c26f17bfd7ee1129b94863fcb38ddfd (patch)
tree1dd5cebf2dcda4a5fd94f74a54951340efd0b541 /colorschemes
parente0165a228378dad026353736f433269307b88190 (diff)
Fixes #174: different colors for download/upload
Diffstat (limited to 'colorschemes')
-rw-r--r--colorschemes/default.go2
-rw-r--r--colorschemes/default.json2
-rw-r--r--colorschemes/default_dark.go2
-rw-r--r--colorschemes/monokai.go2
-rw-r--r--colorschemes/nord.go2
-rw-r--r--colorschemes/solarized.go2
-rw-r--r--colorschemes/solarized16_dark.go2
-rw-r--r--colorschemes/solarized16_light.go2
-rw-r--r--colorschemes/template.go4
-rw-r--r--colorschemes/vice.go2
10 files changed, 11 insertions, 11 deletions
diff --git a/colorschemes/default.go b/colorschemes/default.go
index 90ac3fa..10e9fcd 100644
--- a/colorschemes/default.go
+++ b/colorschemes/default.go
@@ -16,7 +16,7 @@ func init() {
ProcCursor: 4,
- Sparkline: 4,
+ Sparklines: [2]int{4, 5},
DiskBar: 7,
diff --git a/colorschemes/default.json b/colorschemes/default.json
index d6b3dc5..ec60e8e 100644
--- a/colorschemes/default.json
+++ b/colorschemes/default.json
@@ -15,7 +15,7 @@
"ProcCursor": 4,
- "Sparkline": 4,
+ "Sparklines": [4, 5],
"DiskBar": 7,
diff --git a/colorschemes/default_dark.go b/colorschemes/default_dark.go
index 7f7911c..72a2d05 100644
--- a/colorschemes/default_dark.go
+++ b/colorschemes/default_dark.go
@@ -16,7 +16,7 @@ func init() {
ProcCursor: 33,
- Sparkline: 4,
+ Sparklines: [2]int{4, 5},
DiskBar: 252,
diff --git a/colorschemes/monokai.go b/colorschemes/monokai.go
index d09f3c9..989234c 100644
--- a/colorschemes/monokai.go
+++ b/colorschemes/monokai.go
@@ -16,7 +16,7 @@ func init() {
ProcCursor: 197,
- Sparkline: 81,
+ Sparklines: [2]int{81, 186},
DiskBar: 102,
diff --git a/colorschemes/nord.go b/colorschemes/nord.go
index 028057e..47059d6 100644
--- a/colorschemes/nord.go
+++ b/colorschemes/nord.go
@@ -29,7 +29,7 @@ func init() {
ProcCursor: 31, // blue (nord9)
- Sparkline: 31,
+ Sparklines: [2]int{31, 96},
DiskBar: 254,
diff --git a/colorschemes/solarized.go b/colorschemes/solarized.go
index 4649d93..90589e4 100644
--- a/colorschemes/solarized.go
+++ b/colorschemes/solarized.go
@@ -19,7 +19,7 @@ func init() {
ProcCursor: 136,
- Sparkline: 33,
+ Sparklines: [2]int{33, 136},
DiskBar: 243,
diff --git a/colorschemes/solarized16_dark.go b/colorschemes/solarized16_dark.go
index 00c7eb6..1977ae2 100644
--- a/colorschemes/solarized16_dark.go
+++ b/colorschemes/solarized16_dark.go
@@ -18,7 +18,7 @@ func init() {
ProcCursor: 4,
- Sparkline: 4,
+ Sparklines: [2]int{4, 5},
DiskBar: 12, // base0
diff --git a/colorschemes/solarized16_light.go b/colorschemes/solarized16_light.go
index b4157d9..b912a06 100644
--- a/colorschemes/solarized16_light.go
+++ b/colorschemes/solarized16_light.go
@@ -18,7 +18,7 @@ func init() {
ProcCursor: 4,
- Sparkline: 4,
+ Sparklines: [2]int{4, 5},
DiskBar: 11, // base00
diff --git a/colorschemes/template.go b/colorschemes/template.go
index 514a063..b2a0b3f 100644
--- a/colorschemes/template.go
+++ b/colorschemes/template.go
@@ -52,8 +52,8 @@ type Colorscheme struct {
// ProcCursor is used as the color for the color bar in the process widget
ProcCursor int
- // SparkLine determines the color of the data line in spark graphs
- Sparkline int
+ // SparkLines define the colors used for the Network usage graphs
+ Sparklines [2]int
// DiskBar is the color of the disk gauge bars (currently unused,
// as there's no disk gauge widget)
diff --git a/colorschemes/vice.go b/colorschemes/vice.go
index d0dbb03..f5e42e2 100644
--- a/colorschemes/vice.go
+++ b/colorschemes/vice.go
@@ -16,7 +16,7 @@ func init() {
ProcCursor: 159,
- Sparkline: 183,
+ Sparklines: [2]int{183, 146},
DiskBar: 158,