Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/817e85f8823f6847b49c3...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/817e85f8823f6847b49c396...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/817e85f8823f6847b49c39622...
The branch, master has been updated
via 817e85f8823f6847b49c39622b6d62ac86871391 (commit)
from ec3491280a67ea55d322baf736d538815a4a6087 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=817e85f8823f6847b49...
commit 817e85f8823f6847b49c39622b6d62ac86871391
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Ensure readable default colours.
diff --git a/desktop/options.h b/desktop/options.h
index bd4959e..7956618 100644
--- a/desktop/options.h
+++ b/desktop/options.h
@@ -244,31 +244,31 @@ NSOPTION_BOOL(enable_PDF_compression, true)
NSOPTION_BOOL(enable_PDF_password, false)
/******** System colours ********/
-NSOPTION_COLOUR(sys_colour_ActiveBorder, 0x00000000)
-NSOPTION_COLOUR(sys_colour_ActiveCaption, 0x00dddddd)
-NSOPTION_COLOUR(sys_colour_AppWorkspace, 0x00eeeeee)
-NSOPTION_COLOUR(sys_colour_Background, 0x00aa0000)
-NSOPTION_COLOUR(sys_colour_ButtonFace, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_ButtonHighlight, 0x00dddddd)
-NSOPTION_COLOUR(sys_colour_ButtonShadow, 0x00bbbbbb)
-NSOPTION_COLOUR(sys_colour_ButtonText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_CaptionText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_GrayText, 0x00cccccc)
-NSOPTION_COLOUR(sys_colour_Highlight, 0x00ee0000)
-NSOPTION_COLOUR(sys_colour_HighlightText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_InactiveBorder, 0x00ffffff)
-NSOPTION_COLOUR(sys_colour_InactiveCaption, 0x00ffffff)
-NSOPTION_COLOUR(sys_colour_InactiveCaptionText, 0x00cccccc)
-NSOPTION_COLOUR(sys_colour_InfoBackground, 0x00aaaaaa)
+NSOPTION_COLOUR(sys_colour_ActiveBorder, 0x00d3d3d3)
+NSOPTION_COLOUR(sys_colour_ActiveCaption, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_AppWorkspace, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_Background, 0x006e6e6e)
+NSOPTION_COLOUR(sys_colour_ButtonFace, 0x00f9f9f9)
+NSOPTION_COLOUR(sys_colour_ButtonHighlight, 0x00ffffff)
+NSOPTION_COLOUR(sys_colour_ButtonShadow, 0x00aeaeae)
+NSOPTION_COLOUR(sys_colour_ButtonText, 0x004c4c4c)
+NSOPTION_COLOUR(sys_colour_CaptionText, 0x004c4c4c)
+NSOPTION_COLOUR(sys_colour_GrayText, 0x00505050)
+NSOPTION_COLOUR(sys_colour_Highlight, 0x00c00800)
+NSOPTION_COLOUR(sys_colour_HighlightText, 0x00ffffff)
+NSOPTION_COLOUR(sys_colour_InactiveBorder, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_InactiveCaption, 0x00e6e6e6)
+NSOPTION_COLOUR(sys_colour_InactiveCaptionText, 0x00a6a6a6)
+NSOPTION_COLOUR(sys_colour_InfoBackground, 0x008fdfef)
NSOPTION_COLOUR(sys_colour_InfoText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_Menu, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_MenuText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_Scrollbar, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_ThreeDDarkShadow, 0x00555555)
-NSOPTION_COLOUR(sys_colour_ThreeDFace, 0x00dddddd)
-NSOPTION_COLOUR(sys_colour_ThreeDHighlight, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_ThreeDLightShadow, 0x00999999)
-NSOPTION_COLOUR(sys_colour_ThreeDShadow, 0x00777777)
-NSOPTION_COLOUR(sys_colour_Window, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_WindowFrame, 0x00000000)
+NSOPTION_COLOUR(sys_colour_Menu, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_MenuText, 0x004e4e4e)
+NSOPTION_COLOUR(sys_colour_Scrollbar, 0x00cccccc)
+NSOPTION_COLOUR(sys_colour_ThreeDDarkShadow, 0x00aeaeae)
+NSOPTION_COLOUR(sys_colour_ThreeDFace, 0x00f9f9f9)
+NSOPTION_COLOUR(sys_colour_ThreeDHighlight, 0x00ffffff)
+NSOPTION_COLOUR(sys_colour_ThreeDLightShadow, 0x00ffffff)
+NSOPTION_COLOUR(sys_colour_ThreeDShadow, 0x00d5d5d5)
+NSOPTION_COLOUR(sys_colour_Window, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_WindowFrame, 0x004e4e4e)
NSOPTION_COLOUR(sys_colour_WindowText, 0x00000000)
-----------------------------------------------------------------------
Summary of changes:
desktop/options.h | 52 ++++++++++++++++++++++++++--------------------------
1 files changed, 26 insertions(+), 26 deletions(-)
diff --git a/desktop/options.h b/desktop/options.h
index bd4959e..7956618 100644
--- a/desktop/options.h
+++ b/desktop/options.h
@@ -244,31 +244,31 @@ NSOPTION_BOOL(enable_PDF_compression, true)
NSOPTION_BOOL(enable_PDF_password, false)
/******** System colours ********/
-NSOPTION_COLOUR(sys_colour_ActiveBorder, 0x00000000)
-NSOPTION_COLOUR(sys_colour_ActiveCaption, 0x00dddddd)
-NSOPTION_COLOUR(sys_colour_AppWorkspace, 0x00eeeeee)
-NSOPTION_COLOUR(sys_colour_Background, 0x00aa0000)
-NSOPTION_COLOUR(sys_colour_ButtonFace, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_ButtonHighlight, 0x00dddddd)
-NSOPTION_COLOUR(sys_colour_ButtonShadow, 0x00bbbbbb)
-NSOPTION_COLOUR(sys_colour_ButtonText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_CaptionText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_GrayText, 0x00cccccc)
-NSOPTION_COLOUR(sys_colour_Highlight, 0x00ee0000)
-NSOPTION_COLOUR(sys_colour_HighlightText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_InactiveBorder, 0x00ffffff)
-NSOPTION_COLOUR(sys_colour_InactiveCaption, 0x00ffffff)
-NSOPTION_COLOUR(sys_colour_InactiveCaptionText, 0x00cccccc)
-NSOPTION_COLOUR(sys_colour_InfoBackground, 0x00aaaaaa)
+NSOPTION_COLOUR(sys_colour_ActiveBorder, 0x00d3d3d3)
+NSOPTION_COLOUR(sys_colour_ActiveCaption, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_AppWorkspace, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_Background, 0x006e6e6e)
+NSOPTION_COLOUR(sys_colour_ButtonFace, 0x00f9f9f9)
+NSOPTION_COLOUR(sys_colour_ButtonHighlight, 0x00ffffff)
+NSOPTION_COLOUR(sys_colour_ButtonShadow, 0x00aeaeae)
+NSOPTION_COLOUR(sys_colour_ButtonText, 0x004c4c4c)
+NSOPTION_COLOUR(sys_colour_CaptionText, 0x004c4c4c)
+NSOPTION_COLOUR(sys_colour_GrayText, 0x00505050)
+NSOPTION_COLOUR(sys_colour_Highlight, 0x00c00800)
+NSOPTION_COLOUR(sys_colour_HighlightText, 0x00ffffff)
+NSOPTION_COLOUR(sys_colour_InactiveBorder, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_InactiveCaption, 0x00e6e6e6)
+NSOPTION_COLOUR(sys_colour_InactiveCaptionText, 0x00a6a6a6)
+NSOPTION_COLOUR(sys_colour_InfoBackground, 0x008fdfef)
NSOPTION_COLOUR(sys_colour_InfoText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_Menu, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_MenuText, 0x00000000)
-NSOPTION_COLOUR(sys_colour_Scrollbar, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_ThreeDDarkShadow, 0x00555555)
-NSOPTION_COLOUR(sys_colour_ThreeDFace, 0x00dddddd)
-NSOPTION_COLOUR(sys_colour_ThreeDHighlight, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_ThreeDLightShadow, 0x00999999)
-NSOPTION_COLOUR(sys_colour_ThreeDShadow, 0x00777777)
-NSOPTION_COLOUR(sys_colour_Window, 0x00aaaaaa)
-NSOPTION_COLOUR(sys_colour_WindowFrame, 0x00000000)
+NSOPTION_COLOUR(sys_colour_Menu, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_MenuText, 0x004e4e4e)
+NSOPTION_COLOUR(sys_colour_Scrollbar, 0x00cccccc)
+NSOPTION_COLOUR(sys_colour_ThreeDDarkShadow, 0x00aeaeae)
+NSOPTION_COLOUR(sys_colour_ThreeDFace, 0x00f9f9f9)
+NSOPTION_COLOUR(sys_colour_ThreeDHighlight, 0x00ffffff)
+NSOPTION_COLOUR(sys_colour_ThreeDLightShadow, 0x00ffffff)
+NSOPTION_COLOUR(sys_colour_ThreeDShadow, 0x00d5d5d5)
+NSOPTION_COLOUR(sys_colour_Window, 0x00f1f1f1)
+NSOPTION_COLOUR(sys_colour_WindowFrame, 0x004e4e4e)
NSOPTION_COLOUR(sys_colour_WindowText, 0x00000000)
--
NetSurf Browser