logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/

root.style.js (983B)


  1. export default {
  2. name: 'Root',
  3. selector: ':root',
  4. notEditable: true,
  5. defaultRules: [
  6. {
  7. directives: {
  8. // These are here just to establish order,
  9. // themes should override those
  10. '--bg': 'color | #121a24',
  11. '--fg': 'color | #182230',
  12. '--text': 'color | #b9b9ba',
  13. '--link': 'color | #d8a070',
  14. '--accent': 'color | #d8a070',
  15. '--cRed': 'color | #FF0000',
  16. '--cBlue': 'color | #0095ff',
  17. '--cGreen': 'color | #0fa00f',
  18. '--cOrange': 'color | #ffa500',
  19. // Fonts
  20. '--font': 'generic | sans-serif',
  21. '--monoFont': 'generic | monospace',
  22. // Fallback no-background-image color
  23. // (also useful in some other places like scrollbars)
  24. '--wallpaper': 'color | --bg, -2',
  25. // Selection colors
  26. '--selectionBackground': 'color | --accent',
  27. '--selectionText': 'color | $textColor(--accent --text no-preserve)'
  28. }
  29. }
  30. ]
  31. }