Is there a way to export a theme you’ve made (or someone else’s that you like) to something like VS Code?
If there isn’t can this be implemented or is there some other way to do something similar?
2 Likes
If you set your theme to the theme you want and download the HTML for a replit page, the colors should be in a <script>
with id __NEXT_DATA__
and a type
attribute of application/json
in the props.reduxState.user.userInfo.customThemeValues
property. (It’d also be able to be retrieved using GraphQL, but we aren’t allowed to share details about that)
So I am correct by assuming I can do this on any Replit page then?
Yes. That data should be on any page
1 Like
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.