diff options
author | Yousuf Philips <philipz85@hotmail.com> | 2017-05-23 03:22:28 +0400 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2017-05-23 11:45:03 +0200 |
commit | 318ba58031f656beda5a735d687a0ba991d9d779 (patch) | |
tree | af28037f17f22a291bac2f32a2e36ce5eb444178 /include | |
parent | c9c0aefd24c3aab24403b41b601c392267c6aff7 (diff) |
tdf#107731 New default red and yellow for font and highlight color
Change-Id: Ide81a7a3fce963a13b5c65861f566878ccb15676
Reviewed-on: https://gerrit.libreoffice.org/37884
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/colordata.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/tools/colordata.hxx b/include/tools/colordata.hxx index c303957411df..3df26b57092b 100644 --- a/include/tools/colordata.hxx +++ b/include/tools/colordata.hxx @@ -46,6 +46,7 @@ constexpr ColorData RGB_COLORDATA(sal_uInt8 r, sal_uInt8 g, sal_uInt8 b) { #define COL_GREEN RGB_COLORDATA( 0x00, 0x80, 0x00 ) #define COL_CYAN RGB_COLORDATA( 0x00, 0x80, 0x80 ) #define COL_RED RGB_COLORDATA( 0x80, 0x00, 0x00 ) +#define COL_RED_FONTCOLOR RGB_COLORDATA( 0xCE, 0x18, 0x1E ) #define COL_MAGENTA RGB_COLORDATA( 0x80, 0x00, 0x80 ) #define COL_BROWN RGB_COLORDATA( 0x80, 0x80, 0x00 ) #define COL_GRAY RGB_COLORDATA( 0x80, 0x80, 0x80 ) @@ -59,6 +60,7 @@ constexpr ColorData RGB_COLORDATA(sal_uInt8 r, sal_uInt8 g, sal_uInt8 b) { #define COL_LIGHTMAGENTA RGB_COLORDATA( 0xFF, 0x00, 0xFF ) #define COL_LIGHTGRAYBLUE RGB_COLORDATA( 0xE0, 0xE0, 0xFF ) #define COL_YELLOW RGB_COLORDATA( 0xFF, 0xFF, 0x00 ) +#define COL_YELLOW_HIGHLIGHT RGB_COLORDATA( 0xFF, 0xF2, 0x00 ) #define COL_WHITE RGB_COLORDATA( 0xFF, 0xFF, 0xFF ) #define COL_TRANSPARENT TRGB_COLORDATA( 0xFF, 0xFF, 0xFF, 0xFF ) #define COL_AUTO (ColorData)0xFFFFFFFF |