diff options
| author | Jonas Kohl | 2024-09-16 23:13:07 +0200 | 
|---|---|---|
| committer | Jonas Kohl | 2024-09-16 23:13:07 +0200 | 
| commit | e79ec21fc8c03262ca4e16b68c08705495b7d2e5 (patch) | |
| tree | 0a550efa99577c52e23f19213ac4dcbd0ff044c8 /src/themes | |
| parent | f2a5f45355b83540dbb42b3a198a20ec354e0422 (diff) | |
Theme stuff
Diffstat (limited to 'src/themes')
| -rw-r--r-- | src/themes/cyborg/theme.json | 21 | ||||
| -rw-r--r-- | src/themes/maverix/theme.json | 12 | ||||
| -rw-r--r-- | src/themes/spacelab/theme.json | 12 | 
3 files changed, 45 insertions, 0 deletions
| diff --git a/src/themes/cyborg/theme.json b/src/themes/cyborg/theme.json new file mode 100644 index 0000000..38ee8c0 --- /dev/null +++ b/src/themes/cyborg/theme.json @@ -0,0 +1,21 @@ +{ +    "$format": 1, +    "version": "1.0.0", +    "id": "cyborg", +    "name": "Cyborg", +    "author": "Jonas Kohl", +    "files": [ +        "../../ui/cyborg.min.css", +        "../../ui/site.css", +        [ +            ".form-control {", +            "    background: #3c3c3c;", +            "    color: #fff;", +            "}", +            ".image-attachment-image {", +            "    border-color: #888;", +            "}" +        ] +    ] +} + diff --git a/src/themes/maverix/theme.json b/src/themes/maverix/theme.json new file mode 100644 index 0000000..11d8ec1 --- /dev/null +++ b/src/themes/maverix/theme.json @@ -0,0 +1,12 @@ +{ +    "$format": 1, +    "version": "1.0.0", +    "id": "maverix", +    "name": "Maverix", +    "author": "Jonas Kohl", +    "files": [ +        "../../ui/dist/css/bootstrap.min.css", +        "../../ui/maverix/maverix.css", +        "../../ui/site.css" +    ] +} diff --git a/src/themes/spacelab/theme.json b/src/themes/spacelab/theme.json new file mode 100644 index 0000000..941c965 --- /dev/null +++ b/src/themes/spacelab/theme.json @@ -0,0 +1,12 @@ +{ +    "$format": 1, +    "version": "1.0.0", +    "id": "spacelab", +    "name": "Spacelab", +    "author": "Jonas Kohl", +    "files": [ +        "../../ui/spacelab.min.css", +        "../../ui/site.css" +    ] +} + |