diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-08 22:11:56 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-08 22:34:24 +0100 |
commit | 28567712f397d5e50324acd381e389eba920d8df (patch) | |
tree | 4759d4717d475ad6747915789146ce4136239ff4 /gnu/system/grub.scm | |
parent | bfdbaf779f6c42b9ea7336bc3bb66d70ec9bb313 (diff) | |
download | patches-28567712f397d5e50324acd381e389eba920d8df.tar patches-28567712f397d5e50324acd381e389eba920d8df.tar.gz |
system: grub: Adjust default theme color.
* gnu/system/grub.scm (%default-theme)[color-highlight]: Change
foreground to cyan, as suggested by Felipe López.
Diffstat (limited to 'gnu/system/grub.scm')
-rw-r--r-- | gnu/system/grub.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/grub.scm b/gnu/system/grub.scm index 67375b45cf..dad39bfdc7 100644 --- a/gnu/system/grub.scm +++ b/gnu/system/grub.scm @@ -96,7 +96,7 @@ ;; Default theme contributed by Felipe López. (grub-theme (images (list %background-image)) - (color-highlight '((fg . white) (bg . black))) ;XXX: fg should be #x3bb7f5 + (color-highlight '((fg . cyan) (bg . black))) ;XXX: fg should be #x3bb7f5 (color-normal '((fg . light-gray) (bg . black))))) ;XXX: #x303030 (define-record-type* <grub-configuration> |