Created
August 3, 2023 08:20
-
-
Save philipphager/878e6e7edd029a28e0334612b7596b63 to your computer and use it in GitHub Desktop.
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
def theme(): | |
return { | |
"config": { | |
"title": { | |
"font": "serif", | |
"fontWeight": "normal", | |
"fontSize": 16, | |
}, | |
"axis": { | |
"titleFont": "serif", | |
"titleFontWeight": "normal", | |
"titleFontSize": 16, | |
"labelFont": "serif", | |
"labelFontWeight": "normal", | |
"labelFontSize": 16 | |
}, | |
"headerColumn": { | |
"titleFont": "serif", | |
"titleFontWeight": "normal", | |
"titleFontSize": 16, | |
"labelFont": "serif", | |
"labelFontWeight": "normal", | |
"labelFontSize": 16 | |
}, | |
"headerRow": { | |
"titleFont": "serif", | |
"titleFontWeight": "normal", | |
"titleFontSize": 16, | |
"labelFont": "serif", | |
"labelFontWeight": "normal", | |
"labelFontSize": 16 | |
}, | |
"legend": { | |
"titleFont": "serif", | |
"titleFontWeight": "normal", | |
"titleFontSize": 16, | |
"labelFont": "serif", | |
"labelFontWeight": "normal", | |
"labelFontSize": 16 | |
}, | |
"text": { | |
"font": "serif", | |
"fontSize": 14, | |
}, | |
}, | |
} | |
alt.themes.register("latex", theme) | |
alt.themes.enable("latex") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment