Last active
May 20, 2022 08:10
-
-
Save joaopalmeiro/b6bc18e4f5bffb37db71b48bd6103f58 to your computer and use it in GitHub Desktop.
Sneak peek of the theme configuration.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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