Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

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

at main 49 lines 1.1 kB view raw
1:root { 2 /* Backgrounds */ 3 --background-primary: #ffffff; 4 --background-secondary: #f7f8f9; 5 --background-secondary-alt: #f2f3f5; 6 --background-tertiary: #dbdcdf; 7 8 /* Text for Light Backgrounds */ 9 --text-light-headings-primary: #252527; 10 --text-light-headings-secondary: #5f626d; 11 --text-light-primary: #3c3c40; 12 --text-light-secondary: #656e7b; 13 --text-light-disabled: #a8aeb8; 14 15 /* Text for Dark Backgrounds */ 16 --text-dark-headings: #ffffff; 17 --text-dark-primary: #ebebeb; 18 --text-dark-secondary: #cdd0d6; 19 --text-dark-disabled: #858e9b; 20 21 /* Brand */ 22 --brand-primary: #1227ce; 23 --brand-dark: #0c1b8d; 24 25 /* Links */ 26 --link-primary: #0075e0; 27 --link-dark: #1153a6; 28 --link-muted: #cae0f9; 29 --link-white: #ffffff; 30 --link-grey: #252527; 31 --link-light-hover: #e4effc; 32 33 /* Status */ 34 --success-primary: #3e7025; 35 --success-muted: #e6f2df; 36 --error-primary: #b23a32; 37 --error-muted: #f5dedc; 38 --warning-primary: #faad14; 39 --warning-muted: #feefd2; 40 41 /* Icons */ 42 --icon-primary: #535a65; 43 --icon-active: #25282d; 44 --icon-hover: #3c4149; 45 --icon-muted: #9aa1ac; 46 47 /* Dividers */ 48 --divider: #dbdcdf; 49}