diff options
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" + ] +} + |