pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add all the colors

Pas 7c9f3c75 51e30c97

+6 -18
+6 -18
themes/custom.ts
··· 1 1 import merge from "lodash.merge"; 2 2 import { createTheme } from "./types"; 3 3 import { defaultTheme } from "./default"; 4 - import classic from "./list/classic"; 5 - import blue from "./list/blue"; 6 - import red from "./list/red"; 7 - import teal from "./list/teal"; 8 - import green from "./list/green"; 9 - import pink from "./list/pink"; 10 - import autumn from "./list/autumn"; 11 - import frost from "./list/frost"; 12 - import grape from "./list/grape"; 13 4 import { colorToRgbString } from "../src/utils/color"; 5 + import { allThemes } from "./all"; 14 6 15 7 const availableThemes = [ 16 - { id: "classic", theme: classic }, 17 - { id: "blue", theme: blue }, 18 - { id: "red", theme: red }, 19 - { id: "teal", theme: teal }, 20 - { id: "green", theme: green }, 21 - { id: "pink", theme: pink }, 22 - { id: "autumn", theme: autumn }, 23 - { id: "frost", theme: frost }, 24 - { id: "grape", theme: grape }, 8 + { id: "default", theme: defaultTheme }, 9 + ...allThemes.map((t) => ({ 10 + id: t.name, 11 + theme: { extend: t.extend }, 12 + })), 25 13 ]; 26 14 27 15 function cssVarName(path: string) {