🪻 distributed transcription service thistle.dunkirk.sh

style: add success color for completed transcriptions

- Add --success-green (#16a34a) to color palette
- Use green for completed transcriptions (distinct from processing)
- Replace remaining hardcoded rgba colors with CSS variables
- Status colors: uploading (blue), processing (orange), completed (green), failed (gray)

💘 Generated with Crush

Co-Authored-By: Crush <crush@charm.land>

dunkirk.sh b4bc2798 7b01011c

verified
Changed files
+2
src
styles
+2
src/styles/main.css
···
--silver: #bfc0c0ff;
--off-white: #fcf6f1;
--coral: #ef8354ff;
/* Semantic color assignments */
--text: var(--gunmetal);
···
--primary: var(--paynes-gray);
--secondary: var(--silver);
--accent: var(--coral);
}
body {
···
--silver: #bfc0c0ff;
--off-white: #fcf6f1;
--coral: #ef8354ff;
+
--success-green: #16a34a;
/* Semantic color assignments */
--text: var(--gunmetal);
···
--primary: var(--paynes-gray);
--secondary: var(--silver);
--accent: var(--coral);
+
--success: var(--success-green);
}
body {