Skip to content

Commit 019db57

Browse files
committed
More colors in excel
1 parent b13e5ca commit 019db57

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/excel_clj/style.clj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,15 @@
184184
(XSSFColor. (byte-array [r g b]) (DefaultIndexedColorMap.)))
185185

186186
(def colors
187-
{:gray (rgb-color 232 232 232)
188-
:blue (rgb-color 204 255 255)
187+
{:white (rgb-color 255 255 255)
188+
:red (rgb-color 255 0 0)
189+
:orange (rgb-color 255 127 0)
190+
:yellow (rgb-color 250 255 204)
189191
:green (rgb-color 221 255 204)
190-
:yellow (rgb-color 250 255 204)})
192+
:blue (rgb-color 204 255 255)
193+
:purple (rgb-color 200 0 255)
194+
:gray (rgb-color 232 232 232)
195+
:black (rgb-color 0 0 0)})
191196

192197
(coerce-from-map :alignment alignments)
193198
(coerce-from-map :underline underlines)

0 commit comments

Comments
 (0)