ui.theme.light: using HEXCOLOR

db4
nicolas-p 2015-08-07 17:29:10 +02:00 committed by John Benediktsson
parent 1817a4b8cb
commit bab79fe04c
1 changed files with 6 additions and 11 deletions

View File

@ -1,6 +1,6 @@
! Copyright (C) 2015 Nicolas Pénet. ! Copyright (C) 2015 Nicolas Pénet.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: accessors colors colors.constants ui.pens.solid ; USING: accessors colors colors.constants colors.hex ui.pens.solid ;
IN: ui.gadgets.theme IN: ui.gadgets.theme
CONSTANT: toolbar-background COLOR: grey95 CONSTANT: toolbar-background COLOR: grey95
@ -40,18 +40,13 @@ CONSTANT: popup-color COLOR: yellow2
CONSTANT: object-color COLOR: aquamarine2 CONSTANT: object-color COLOR: aquamarine2
CONSTANT: contents-color COLOR: orchid2 CONSTANT: contents-color COLOR: orchid2
CONSTANT: help-header-background CONSTANT: help-header-background HEXCOLOR: F4EFD9
T{ rgba { red 0.9568 } { green 0.9450 } { blue 0.8509 } { alpha 1.0 } } inline
CONSTANT: thread-status-stopped-background CONSTANT: thread-status-stopped-background HEXCOLOR: F4D9D9
T{ rgba { red 0.9569 } { green 0.8510 } { blue 0.8510 } { alpha 1.0 } } inline CONSTANT: thread-status-suspended-background HEXCOLOR: F4EAD9
CONSTANT: thread-status-suspended-background CONSTANT: thread-status-running-background HEXCOLOR: EDF4D9
T{ rgba { red 0.9569 } { green 0.9177 } { blue 0.8510 } { alpha 1.0 } } inline
CONSTANT: thread-status-running-background
T{ rgba { red 0.9294 } { green 0.9569 } { blue 0.8510 } { alpha 1.0 } } inline
CONSTANT: error-summary-background CONSTANT: error-summary-background HEXCOLOR: F4EAD9
T{ rgba { red 0.9569 } { green 0.9177 } { blue 0.8510 } { alpha 1.0 } } inline
CONSTANT: content-background COLOR: white CONSTANT: content-background COLOR: white
CONSTANT: text-color COLOR: black CONSTANT: text-color COLOR: black