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

dark theme (example code) #58

Open
atomGit opened this issue Dec 10, 2023 · 0 comments
Open

dark theme (example code) #58

atomGit opened this issue Dec 10, 2023 · 0 comments

Comments

@atomGit
Copy link

atomGit commented Dec 10, 2023

for the options page...

@-moz-document url("moz-extension://<INSERT EXTENSION ID>/options.html") {
    body {
        background-color: #272727;
        color: #ccc;
    }
    input[type="text"] {
        -moz-default-appearance: unset;
        background-color: #1f1f1f;
        color: #e7f874;
        text-rendering: unset;
    }
}

for the pop-up...

@-moz-document url("moz-extension://<INSERT EXTENSION ID>/popup.html") {
    body {
        background: #242424;
        color: #d9d9d9;
        border: 2px solid gray;
    }
    #formatGroup {
        display: grid;
        min-width: 40em;
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant