Skip to content

Commit 18230a6

Browse files
committed
WIP
1 parent c8b9e54 commit 18230a6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

drracket-core-lib/drracket/private/main.rkt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,9 @@
771771
'framework:basic-canvas-background
772772
(λ (bkg-color) (set-the-color (color-prefs:white-on-black-color-scheme?)
773773
bkg-color))))
774-
774+
;; these should probably be using the usual framework machinery to
775+
;; adjust to various colorschemes, in particular using the style list
776+
;; and related things the way that the colors in the colorer do.
775777
(add-and-monitor-render-syntax-style render-syntax-subtitle-color-style-name
776778
"navy"
777779
"CornflowerBlue")

drracket-tool-lib/drracket/private/standalone-module-browser.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@
536536
(define-values (cw ch) (get-client-size))
537537
(define-values (tw th _1 _2) (send dc get-text-extent label))
538538
(when in?
539-
(define color (if (white-on-black-panel-scheme?) 0.5 0.2))
539+
(define color (if (white-on-black-color-scheme?) 0.5 0.2))
540540
(send dc set-pen "black" 1 'transparent)
541541
(send dc set-brush (get-label-foreground-color) 'solid)
542542
(define alpha (send dc get-alpha))

0 commit comments

Comments
 (0)