diff --git a/change_logs/release_0.4.6.md b/change_logs/release_0.4.6.md
new file mode 100644
index 00000000..505e5c95
--- /dev/null
+++ b/change_logs/release_0.4.6.md
@@ -0,0 +1,30 @@
+
+
+# Release v0.4.6
+
+## Notes
+
+Thank you to all that contributed with flushing out issues with K9s! I'll try
+to mark some of these issues as fixed. But if you don't mind grab the latest
+rev and see if we're happier with some of the fixes!
+
+If you've filed an issue please help me verify and close.
+
+Thank you so much for your support and awesome suggestions to make K9s better!!
+
+Also if you dig this tool, please make some noise on social! [@kitesurfer](https://twitter.com/kitesurfer)
+
+---
+
+## Change Logs
+
+---
+
+## Resolved Bugs
+
++ Node overview column ordering [Issue #153](https://github.com/derailed/k9s/issues/153)
++ Changed foreground color on container pick list [Issue #132](https://github.com/derailed/k9s/issues/132)
+
+---
+
+
© 2019 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0)
diff --git a/internal/resource/no.go b/internal/resource/no.go
index 89fb9ec4..954a97ce 100644
--- a/internal/resource/no.go
+++ b/internal/resource/no.go
@@ -117,8 +117,8 @@ func (*Node) Header(ns string) Row {
"RMEM%",
"CPU",
"MEM",
- "RMEM",
"RCPU",
+ "RMEM",
"ACPU",
"AMEM",
"AGE",
diff --git a/internal/views/select_list.go b/internal/views/select_list.go
index 03a28aa6..8c93393b 100644
--- a/internal/views/select_list.go
+++ b/internal/views/select_list.go
@@ -18,7 +18,7 @@ func newSelectList(parent loggable) *selectList {
{
v.parent = parent
v.SetBorder(true)
- v.SetMainTextColor(tcell.ColorGray)
+ v.SetMainTextColor(tcell.ColorWhite)
v.ShowSecondaryText(false)
v.SetShortcutColor(tcell.ColorAqua)
v.SetSelectedBackgroundColor(tcell.ColorAqua)