summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorGabor Kelemen <kelemen.gabor2@nisz.hu>2019-08-06 21:45:45 +0200
committerLászló Németh <nemeth@numbertext.org>2019-10-08 16:41:37 +0200
commit850123c8572f07eafc16eed2eb00b4d83945808b (patch)
tree5f295470b19cc693b92a610b620aa27d61a60578 /sc
parent8519c6d98250a5f2b4c78e330fc79907c596a447 (diff)
tdf#125289 Use default colors from the new standard palette
These look quite similar to the previous ones and we have translatable strings for them Change-Id: Ib40f4087830098341dcd32ce81673f6f187fe685 Reviewed-on: https://gerrit.libreoffice.org/77074 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/condformat/condformatdlgentry.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx
index f14bcd066784..39170fcb9c77 100644
--- a/sc/source/ui/condformat/condformatdlgentry.cxx
+++ b/sc/source/ui/condformat/condformatdlgentry.cxx
@@ -774,8 +774,8 @@ void ScColorScale2FrmtEntry::Init()
{
mxLbEntryTypeMin->connect_changed( LINK( this, ScColorScale2FrmtEntry, EntryTypeHdl ) );
mxLbEntryTypeMax->connect_changed( LINK( this, ScColorScale2FrmtEntry, EntryTypeHdl ) );
- mxLbColMin->SelectEntry(Color(0xFFF685)); // Light Yellow 2
- mxLbColMax->SelectEntry(Color(0x65C295)); // Light Green 2
+ mxLbColMin->SelectEntry(Color(0xffff6d)); // Light Yellow 2
+ mxLbColMax->SelectEntry(Color(0x77bc65)); // Light Green 2
}
ScFormatEntry* ScColorScale2FrmtEntry::createColorscaleEntry() const
@@ -920,7 +920,7 @@ void ScColorScale3FrmtEntry::Init()
mxLbEntryTypeMiddle->connect_changed( LINK( this, ScColorScale3FrmtEntry, EntryTypeHdl ) );
mxLbColMin->SelectEntry(COL_LIGHTRED);
mxLbColMiddle->SelectEntry(COL_YELLOW);
- mxLbColMax->SelectEntry(Color(0x00CC00));
+ mxLbColMax->SelectEntry(Color(0x00a933));
}
ScFormatEntry* ScColorScale3FrmtEntry::createColorscaleEntry() const