system: grub: Adjust default theme color.

* gnu/system/grub.scm (%default-theme)[color-highlight]: Change
  foreground to cyan, as suggested by Felipe López.
This commit is contained in:
Ludovic Courtès 2014-11-08 22:11:56 +01:00
parent bfdbaf779f
commit 28567712f3
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@
;; Default theme contributed by Felipe López. ;; Default theme contributed by Felipe López.
(grub-theme (grub-theme
(images (list %background-image)) (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 (color-normal '((fg . light-gray) (bg . black))))) ;XXX: #x303030
(define-record-type* <grub-configuration> (define-record-type* <grub-configuration>