You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
596 B

  1. /*
  2. Arc-Dark Color Scheme
  3. */
  4. @define-color highlight #fbf1c7;
  5. @define-color base1 #ffffff;
  6. @define-color base3 #282828;
  7. *{
  8. font-family: UbuntuMono;
  9. }
  10. window {
  11. border: 1px solid @highlight;
  12. }
  13. #input {
  14. margin-bottom: 15px;
  15. padding:3px;
  16. border-radius: 5px;
  17. border:none;
  18. color: #282828;
  19. }
  20. #inner-box {
  21. background-color: @base3;
  22. }
  23. #outer-box {
  24. margin: 1px;
  25. padding:15px;
  26. background-color: #282828;
  27. }
  28. #text {
  29. padding: 5px;
  30. color: @highlight;
  31. }
  32. #entry:nth-child() {
  33. color: @base1;
  34. }
  35. #entry:selected {
  36. border: 2px solid @highlight;
  37. }