Skip to content

Commit

Permalink
fix: change validation colors, background in place of font color
Browse files Browse the repository at this point in the history
  • Loading branch information
popstas committed Apr 20, 2020
1 parent 007995d commit 4e4df1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/save-as-xlsx.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ module.exports = (csvPath, xlsxPath) => {
// styles presets for validation
const styles = {
warning: {
font: {
color: { rgb: "FFA09600" }
fill: {
fgColor: { rgb: "FFFFDAA2" }
}
},
error: {
font: {
color: { rgb: "FFFF0000" }
fill: {
fgColor: { rgb: "FFF7A19A" }
}
}
}
Expand Down

0 comments on commit 4e4df1a

Please sign in to comment.