Skip to content

Commit 79e3e44

Browse files
committed
Merge branch 'main' of https://github.com/NotePlan/plugins
2 parents 181cbcc + e3e9588 commit 79e3e44

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+4257
-863
lines changed

.cursor/rules/noteplan-programming-general.mdc

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ See `@helpers/react/DynamicDialog/DynamicDialog.jsx` and `dialogElementRenderer.
274274
## NotePlan Theme Colors
275275

276276
When using CSS variables for styling, use these NotePlan theme color variables with their default values:
277+
**DO NOT INVENT NEW CSS VARIABLES. USE THESE EXISTING ONES.**
277278

278279
```css
279280
--bg-main-color: #eff1f5;
@@ -298,10 +299,16 @@ When using CSS variables for styling, use these NotePlan theme color variables w
298299
--hashtag-color: inherit;
299300
--attag-color: inherit;
300301
--code-color: #0091f8;
302+
--fg-placeholder-color: rgba(76, 79, 105, 0.7);
303+
--fg-error-color: #b85450;
304+
--bg-error-color: #f5e6e6;
305+
--fg-disabled-color: #999999;
306+
--bg-disabled-color: #f5f5f5;
301307
```
302308

303309
**Always use these CSS variables with their default fallback values** when styling React components. For example:
304310
```css
305-
background: var(--tint-color, #dc8a78);
311+
background: var(--bg-main-color, #eff1f5);
306312
color: var(--fg-main-color, #4c4f69);
313+
icon: var(--tint-color, #1e66f5);
307314
```

0 commit comments

Comments
 (0)