Guest User

Untitled

a guest
Jan 29th, 2023
554
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. /*
  2. Arc-Dark Color Scheme
  3. */
  4.  
  5. @define-color highlight #fbf1c7;
  6. @define-color base1 #ffffff;
  7. @define-color base3 #282828;
  8.  
  9. *{
  10. font-family: UbuntuMono;
  11. }
  12.  
  13. window {
  14. border: 1px solid @highlight;
  15. }
  16.  
  17. #input {
  18. margin-bottom: 15px;
  19. padding:3px;
  20. border-radius: 5px;
  21. border:none;
  22. color: #fbf1c7;
  23. }
  24.  
  25. #inner-box {
  26. background-color: @base3;
  27. }
  28.  
  29. #outer-box {
  30. margin: 1px;
  31. padding:15px;
  32. background-color: #282828;
  33. }
  34.  
  35. #text {
  36. padding: 5px;
  37. color: @highlight;
  38. }
  39.  
  40. #entry:nth-child() {
  41. color: @base1;
  42. }
  43.  
  44. #entry:selected {
  45. border: 2px solid @highlight;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment