We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13e5ca commit 019db57Copy full SHA for 019db57
src/excel_clj/style.clj
@@ -184,10 +184,15 @@
184
(XSSFColor. (byte-array [r g b]) (DefaultIndexedColorMap.)))
185
186
(def colors
187
- {:gray (rgb-color 232 232 232)
188
- :blue (rgb-color 204 255 255)
+ {:white (rgb-color 255 255 255)
+ :red (rgb-color 255 0 0)
189
+ :orange (rgb-color 255 127 0)
190
+ :yellow (rgb-color 250 255 204)
191
:green (rgb-color 221 255 204)
- :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)})
196
197
(coerce-from-map :alignment alignments)
198
(coerce-from-map :underline underlines)
0 commit comments