Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New Theme Request] Flame #331

Open
Oscaramr opened this issue Mar 19, 2022 · 2 comments
Open

[New Theme Request] Flame #331

Oscaramr opened this issue Mar 19, 2022 · 2 comments
Labels
help wanted Extra attention is needed request

Comments

@Oscaramr
Copy link

Flame Home Page would be nice
They have there own CSS Page where you can easily import your own css.

Flame: Nice HomePage

Docker:
https://hub.docker.com/r/pawelmalak/flame

GitHub:
https://github.com/pawelmalak/flame

@reeseovine
Copy link

reeseovine commented Apr 8, 2022

This one should be super easy since custom themes for Flame are literally just an entry with 3 colors in a JSON file.

@reeseovine
Copy link

I tried my hand at it, though you can't do background gradients with this method since it's used as background-color in CSS.

themes.json
{
    "themes": [
        {
            "name": "Aquamarine",
            "isCustom": true,
            "colors": {
                "primary": "#ddd",
                "accent": "#009688",
                "background": "#0b3161"
            }
        },
        {
            "name": "Dark",
            "isCustom": true,
            "colors": {
                "primary": "#dddddd",
                "accent": "#7a7a7a",
                "background": "#141414"
            }
        },
        {
            "name": "Dracula",
            "isCustom": true,
            "colors": {
                "primary": "#95adfa",
                "accent": "#50fa7b",
                "background": "#282a36"
            }
        },
        {
            "name": "Hotline",
            "isCustom": true,
            "colors": {
                "primary": "#dddddd",
                "accent": "#f98dc9",
                "background": "#155fa5"
            }
        },
        {
            "name": "Hot Pink",
            "isCustom": true,
            "colors": {
                "primary": "#eeeeee",
                "accent": "#fb3f62",
                "background": "#204c80"
            }
        },
        {
            "name": "Nord",
            "isCustom": true,
            "colors": {
                "primary": "#eceff4",
                "accent": "#88c0d0",
                "background": "#2e3440"
            }
        },
        {
            "name": "Organizr",
            "isCustom": true,
            "colors": {
                "primary": "#96a2b4",
                "accent": "#2cabe3",
                "background": "#1f1f1f"
            }
        },
        {
            "name": "Overseerr",
            "isCustom": true,
            "colors": {
                "primary": "#d1d5db",
                "accent": "#a78bfa",
                "background": "#1f1f1f"
            }
        },
        {
            "name": "Plex",
            "isCustom": true,
            "colors": {
                "primary": "#dddddd",
                "accent": "#cc7b19",
                "background": "#2e3741"
            }
        },
        {
            "name": "Space Gray",
            "isCustom": true,
            "colors": {
                "primary": "#bbbbbb",
                "accent": "#607d8b",
                "background": "#35444b"
            }
        }
    ]
}

@GilbN GilbN added help wanted Extra attention is needed request and removed help wanted Extra attention is needed labels Dec 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed request
Projects
None yet
Development

No branches or pull requests

3 participants