palette.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Sapphire
  3. *
  4. * Copyright (C) 2018 eq
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
  19. *
  20. */
  21. /* User-editable palette -- based on Arc Dark */
  22. :root {
  23. --bg-color: #2b2e39;
  24. --bg-accent-color: #3c414e;
  25. --text-color: #d3dae3;
  26. --text-disabled-color: rgba(211, 218, 227, 0.45);
  27. --border-color: var(--text-disabled-color);
  28. --message-border-color: rgba(211, 218, 227, 0.1);
  29. --select-bg-color: #5294e2;
  30. --select-text-color: white;
  31. --modal-screen-bg-color: rgba(53, 57, 69, 0.95);
  32. --modal-content-bg-color: rgb(53, 57, 69);
  33. --modal-text-color: var(--text-color);
  34. --button-bg-color: var(--bg-accent-color);
  35. --button-text-color: var(--text-color);
  36. --accent-button-bg-color: rgba(82, 148, 226, 0.95);
  37. --accent-button-text-color: white;
  38. --scroll-color: --var(--button-color);
  39. --scroll-thumb-color: rgba(92, 97, 108, 0.55);
  40. --link-color: #a9caf1;
  41. --chat-switch-color: rgba(255, 255, 255, 0.1);
  42. --red-color: #fc4137;
  43. --orange-color: #f27835;
  44. --green-color: #84b232;
  45. --blue-color: #5294e2;
  46. --pink-color: #e25193;
  47. --buddy-unread-color: var(--select-bg-color);
  48. --buddy-typing-color: var(--green-color);
  49. --status-online-color: var(--green-color);
  50. --status-away-color: white;
  51. --status-dnd-color: var(--red-color);
  52. }