cli + tui to publish to leaflet (wip) & manage tasks, notes & watch/read lists 馃崈
charm leaflet readability golang
29
fork

Configure Feed

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

at 2fc5eeaac410fd50c5badd24730e596681547e13 81 lines 2.6 kB view raw
1 2 3:root { 4 /* Noteleaf Color Palette - Light Mode */ 5 --ifm-color-primary: #00A4FF; /* Malibu - Blue primary */ 6 --ifm-color-primary-dark: #0094e6; 7 --ifm-color-primary-darker: #008ad9; 8 --ifm-color-primary-darkest: #0072b3; 9 --ifm-color-primary-light: #1aadff; 10 --ifm-color-primary-lighter: #33b7ff; 11 --ifm-color-primary-lightest: #66c9ff; 12 13 --ifm-color-success: #00FFB2; /* Julep - Green */ 14 --ifm-color-info: #5CDFEA; /* Lichen - Teal */ 15 --ifm-color-warning: #FF985A; /* Tang - Orange */ 16 --ifm-color-danger: #EB4268; /* Sriracha - Red */ 17 18 /* Background colors - Light mode uses lighter values */ 19 --ifm-background-color: #FFFAF1; /* Butter */ 20 --ifm-background-surface-color: #F1EFEF; /* Salt */ 21 22 /* Text colors */ 23 --ifm-font-color-base: #201F26; /* Pepper */ 24 --ifm-font-color-secondary: #605F6B; /* Oyster */ 25 26 /* Code blocks */ 27 --ifm-code-background: #F1EFEF; /* Salt */ 28 --ifm-code-font-size: 95%; 29 30 --docusaurus-highlighted-code-line-bg: rgba(0, 164, 255, 0.1); 31} 32 33[data-theme='dark'] { 34 /* Noteleaf Color Palette - Dark Mode */ 35 --ifm-color-primary: #00A4FF; /* Malibu - Blue primary */ 36 --ifm-color-primary-dark: #0094e6; 37 --ifm-color-primary-darker: #008ad9; 38 --ifm-color-primary-darkest: #0072b3; 39 --ifm-color-primary-light: #1aadff; 40 --ifm-color-primary-lighter: #33b7ff; 41 --ifm-color-primary-lightest: #66c9ff; 42 43 --ifm-color-success: #00FFB2; /* Julep - Green */ 44 --ifm-color-info: #5CDFEA; /* Lichen - Teal */ 45 --ifm-color-warning: #FF985A; /* Tang - Orange */ 46 --ifm-color-danger: #EB4268; /* Sriracha - Red */ 47 48 /* Background colors - Dark mode */ 49 --ifm-background-color: #201F26; /* Pepper - Darkest base */ 50 --ifm-background-surface-color: #2d2c35; /* BBQ - Secondary background */ 51 52 /* Card/elevated backgrounds */ 53 --ifm-card-background-color: #3A3943; /* Charcoal - Tertiary */ 54 55 /* Text colors */ 56 --ifm-font-color-base: #F1EFEF; /* Salt - Primary text */ 57 --ifm-font-color-secondary: #BFBCC8; /* Smoke - Secondary text */ 58 --ifm-font-color-base-inverse: #201F26; /* Pepper */ 59 60 /* Headings */ 61 --ifm-heading-color: #00A4FF; /* Malibu */ 62 63 /* Code blocks */ 64 --ifm-code-background: #2d2c35; /* BBQ */ 65 --ifm-pre-background: #2d2c35; /* BBQ */ 66 67 /* Borders */ 68 --ifm-color-emphasis-300: #4D4C57; /* Iron */ 69 --ifm-hr-background-color: #4D4C57; /* Iron */ 70 71 /* Links */ 72 --ifm-link-color: #5CDFEA; /* Lichen - Accent */ 73 --ifm-link-hover-color: #00FFB2; /* Julep - Success */ 74 75 --docusaurus-highlighted-code-line-bg: rgba(0, 164, 255, 0.15); 76} 77 78.footer { 79 background: var(--ifm-background-color); 80 color: var(--ifm-font-color-base); 81}