Skip to content

Instantly share code, notes, and snippets.

@joaopalmeiro
Last active May 20, 2022 08:10
Show Gist options
  • Select an option

  • Save joaopalmeiro/b6bc18e4f5bffb37db71b48bd6103f58 to your computer and use it in GitHub Desktop.

Select an option

Save joaopalmeiro/b6bc18e4f5bffb37db71b48bd6103f58 to your computer and use it in GitHub Desktop.
Sneak peek of the theme configuration.
# Sneak peek of the theme configuration:
def feedzai():
"""Feedzai theme (light theme)."""
return {
"config": {
# Guides
"axis": {
"domain": True,
"domainColor": COLORS["axis"],
"grid": False,
"gridCap": "round",
"gridColor": COLORS["grid"],
"gridDash": [2, 4],
"gridWidth": STROKE_WIDTHS["sm"],
"labelColor": COLORS["axis"],
"labelFont": FONT,
"labelPadding": SPACING["sm"],
"tickColor": COLORS["axis"],
"tickOpacity": OPACITIES["md"],
"tickSize": SPACING["md"],
"titleColor": COLORS["text"],
"titleFont": FONT,
"titleFontSize": FONT_SIZES["sm"],
},
# ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment