This commit is contained in:
Julian Kiedaisch
2025-10-24 23:45:06 +02:00
parent 901150219e
commit a1eb7285ce
6 changed files with 32 additions and 28 deletions

View File

@@ -1 +1,3 @@
# PeerTube theme Quickstart # MDG PeerTube theme light
Dies ist das Theme für den Peertube-Server des MDG Hamburgs.

View File

@@ -0,0 +1,20 @@
:root {
--red: #FF3B3B;
--green: #2E9D04;
--fg: #1a1a1a;
--bg: #ffffff;
--input-fg: #1a1a1a;
--input-bg: #d0e6ff;
--input-placeholder: #888888;
--input-border-color: #a5a5a5;
--bg-secondary: hsl(0, 0%, 45%);
--primary: #71b737;
--on-primary: #ffffff;
--border-primary: #71b737;
--is-dark: 0;
}

View File

@@ -1,7 +0,0 @@
function register ({ registerHook, peertubeHelpers }) {
}
export {
register
}

View File

@@ -1,3 +0,0 @@
{
"Hello world": "Hello le monde"
}

View File

@@ -1,30 +1,22 @@
{ {
"name": "peertube-theme-quickstart", "name": "peertube-theme-mdg-light",
"version": "0.0.2", "version": "0.0.1",
"description": "PeerTube theme quickstart", "description": "MDG PeerTube theme light",
"engine": { "engine": {
"peertube": ">=1.3.0" "peertube": ">=7.3.0"
}, },
"keywords": [ "keywords": [
"peertube", "peertube",
"theme" "theme"
], ],
"homepage": "https://framagit.org/framasoft/peertube/peertube-theme-quickstart", "homepage": "https://gitea.mdg-hamburg.de/julian.kiedaisch/peertube-theme-mdg-light",
"author": "Chocobozzz", "author": "Julian Kiedaisch",
"bugs": "https://framagit.org/framasoft/peertube/peertube-theme-quickstart/issues", "bugs": "https://gitea.mdg-hamburg.de/julian.kiedaisch/peertube-theme-mdg-light/issues",
"staticDirs": { "staticDirs": {
"images": "public/images"
}, },
"css": [ "css": [
"assets/style.css" "assets/style.css"
], ],
"clientScripts": [ "clientScripts": [],
{ "translations": {}
"script": "client/common-client-plugin.js",
"scopes": [ "common" ]
}
],
"translations": {
"fr-FR": "./languages/fr.json"
}
} }

View File