Metadata-Version: 2.1
Name: reflux
Version: 0.1.4
Summary: Python package for creating IDE themes on Repl.it. Uses JavaScript bookmarlets!
Home-page: https://github.com/IreTheKID/Reflux
Author: IreTheKID
Author-email: author@example.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Reflux: A Repl.it IDE Theming Tool

Reflux is a tool to create and modify the default styles that apply to your IDE on [Repl.it](https://repl.it/). Using Python, you can create themes, set colors, and generate easy-to-use JavaScript Bookmarlets for use in any Repl. (Currently in Beta!) Designed so that those who are unfamiliar with Python can still create themes!

## Quickstart

```python
import reflux

t = reflux.Theme({
    "name": "New Theme",
    "author": "Your Username",
    "description": "A simple theme to get started with!",
    "default": "light"
})

t.set_color("primary-1", "whitesmoke")

t.set_colors({
    "primary-2": "rbga(255, 255, 255, 0.48)",
    "primary-3": "hsl(0, 100%, 50%)"
})

t.build("mytheme.min.js")
```

Then copy the resulting JS code into a bookmarklet in your broswer, and run it in your Repl! (Running it again, will prompt you for an option to turn it off). Try it out with the [Candyland](https://github.com/IreTheKID/Reflux/tree/master/themes/candyland) theme!

![image](https://storage.googleapis.com/replit/images/1608561552325_de2b5793e1c4702278c2f4801e9be7e5.png)
![image2](https://storage.googleapis.com/replit/images/1608568765752_e07e5c7e8eb41e0fcd603b45c6a3c1a4.png)


