1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
This directory stores icon exploration and production-ready exports for `ccstats`.
- --
Final selected icon is based on concept B in `final/icon.svg`.
-
Primary card text:
- ---
- ---------
If you update `final/icon.svg`, regenerate PNG/ICO assets with:
```bash
BASE="docs/branding"
FINAL="$BASE/final"
mkdir -p "$FINAL"
for SIZE in 1024 512 256 180 128 64 32 16; do
rsvg-convert -w "$SIZE" -h "$SIZE" "$FINAL/icon.svg" -o "$FINAL/icon-${SIZE}.png"
done
magick "$FINAL/icon-16.png" "$FINAL/icon-32.png" "$FINAL/icon-64.png" "$FINAL/favicon.ico"
```