xpppppppaicyber

BETRCASTER

Aug 14th, 2025
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.26 KB | None | 0 0
  1. /* General text */
  2. body, * {
  3.   color: #a0e0ff !important; /* ice blue text */
  4.   text-shadow: 0 0 2px rgba(160, 224, 255, 0.4) !important;
  5. }
  6.  
  7. /* Usernames / mentions */
  8. a,
  9. .username,
  10. .mention,
  11. .text-direct-casts-username,
  12. .text-sm.text-direct-casts-username,
  13. .text-sm.text-direct-casts-username.font-semibold {
  14.   color: #ff66cc !important; /* purple-pink */
  15.   text-shadow: 0 0 2px rgba(255, 102, 204, 0.4) !important;
  16.   transition: color 0.2s ease, text-shadow 0.2s ease;
  17. }
  18.  
  19. /* Hover effect for usernames */
  20. a:hover,
  21. .username:hover,
  22. .mention:hover,
  23. .text-direct-casts-username:hover,
  24. .text-sm.text-direct-casts-username:hover,
  25. .text-sm.text-direct-casts-username.font-semibold:hover {
  26.   color: #ff85dd !important; /* brighter pink */
  27.   text-shadow: 0 0 4px rgba(255, 102, 204, 0.7) !important;
  28. }
  29.  
  30. /* Secondary text (timestamps, metadata) */
  31. .timestamp,
  32. .meta,
  33. .secondary {
  34.   color: #cccccc !important; /* softer gray */
  35.   text-shadow: none !important;
  36. }
  37.  
  38. /* Links in messages */
  39. .message a {
  40.   color: #00ffff !important;
  41.   text-shadow: 0 0 2px rgba(0, 255, 255, 0.4) !important;
  42.   transition: color 0.2s ease, text-shadow 0.2s ease;
  43. }
  44. .message a:hover {
  45.   color: #66ffff !important;
  46.   text-shadow: 0 0 4px rgba(0, 255, 255, 0.7) !important;
  47. }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment