We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44b6d67 commit 7b0123fCopy full SHA for 7b0123f
public/logs/logs.json
@@ -125,5 +125,13 @@
125
"rating": 5,
126
"slug": "food-omelette",
127
"title": "Omelette"
128
+ },
129
+ {
130
+ "category": "Websites",
131
+ "date": "2025-11-03",
132
+ "link": "https://missingdice.com/dice-roller/",
133
+ "rating": 5,
134
+ "slug": "website-missing-dice-dice-roller",
135
+ "title": "Missing Dice - Dice Roller"
136
}
-]
137
+]
public/logs/website-missing-dice-dice-roller.txt
@@ -0,0 +1,5 @@
1
+### Dice Roller
2
+
3
+A beautiful website to roll dice.
4
5
+[Dice Roller](https://missingdice.com/dice-roller/)
src/components/ColorLegends.js
@@ -30,6 +30,10 @@ export const categoryStyles = {
30
backgroundColor: colors['food-alpha-10'],
31
borderColor: colors['food-alpha-50'],
32
},
33
+ Websites: {
34
+ backgroundColor: colors['websites-alpha-10'],
35
+ borderColor: colors['websites-alpha-50'],
36
37
};
38
39
const ColorLegends = ({ onLegendClick, hiddenLegends }) => {
src/components/LogCard.js
@@ -9,6 +9,7 @@ import {
9
MusicNote,
10
Television,
11
ForkKnife,
12
+ Globe,
13
Star
14
} from '@phosphor-icons/react';
15
@@ -20,6 +21,7 @@ const categoryIcons = {
20
21
Music: <MusicNote />,
22
Series: <Television />,
23
Food: <ForkKnife />,
24
+ Websites: <Globe />,
25
26
27
const categoryStyles = {
@@ -51,6 +53,10 @@ const categoryStyles = {
51
53
52
54
55
56
57
58
59
60
61
62
const LogCard = ({ log, index, totalLogs }) => {
src/config/colors.js
@@ -14,6 +14,7 @@ module.exports = {
music: '#a855f7', // purple-500
series: '#ec4899', // pink-500
16
food: '#84cc16', // lime-500
17
+ websites: '#f472b6', // pink-400
18
'title-hover': '#fdd4a6', // orange-200
19
'markdown-title-color': '#fed7aa', // orange-200
'markdown-hx-color': '#ffedd5', // orange-100
@@ -43,6 +44,8 @@ module.exports = {
43
44
'series-alpha-50': 'rgba(236, 72, 153, 0.5)',
45
'food-alpha-10': 'rgba(132, 204, 22, 0.1)',
46
'food-alpha-50': 'rgba(132, 204, 22, 0.5)',
47
+ 'websites-alpha-10': 'rgba(244, 114, 182, 0.1)',
48
+ 'websites-alpha-50': 'rgba(244, 114, 182, 0.5)',
49
50
// Toast colors
'toast-background': 'rgba(68, 64, 59, 0.8)',
0 commit comments