message.rasi 456 B

123456789101112131415161718192021222324
  1. /* Confirm Dialog */
  2. @import "colors.rasi"
  3. * {
  4. background-color: @background;
  5. text-color: @foreground;
  6. font: "Iosevka Nerd Font 12";
  7. }
  8. window {
  9. width: 360px;
  10. padding: 25px;
  11. border: 0px;
  12. border-radius: 12px;
  13. border-color: @accent;
  14. location: center;
  15. y-offset: -20px;
  16. }
  17. entry {
  18. expand: true;
  19. text-color: @accent;
  20. }