This commit is contained in:
2025-12-24 22:52:46 +01:00
parent 4e1c06874c
commit 5ee00cc8c1
151 changed files with 3548 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
:root {
--bg: #272822;
--fg: #f8f8f2;
--primary: #f92672;
--success: #a6e22e;
}
body {
background: var(--bg);
color: var(--fg);
font-family: 'Fira Code', 'JetBrains Mono', monospace;
}
button {
background: var(--primary);
color: var(--fg);
border: none;
}

View File

@@ -0,0 +1,13 @@
:root {
--bg: #fdf6e3;
--fg: #657b83;
--primary: #268bd2;
--accent: #2aa198;
}
body {
background: var(--bg);
color: var(--fg);
}
header, .palette-card {
border-color: var(--accent);
}

View File

@@ -0,0 +1,16 @@
{
"themes": [
{
"name": "Monokai",
"file": "monokai.css",
"description": "Palette sombre inspirée de Monokai",
"type": ".css"
},
{
"name": "Solarized Light",
"file": "solarized-light.css",
"description": "Theme clair Solarized",
"type": ".css"
}
]
}