avatar.css 819 B

1234567891011121314151617181920212223242526272829303132333435
  1. [data-component="avatar"] {
  2. --avatar-bg: var(--color-surface-info-base);
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. flex-shrink: 0;
  7. border-radius: var(--radius-sm);
  8. border: 1px solid var(--color-border-weak-base);
  9. font-family: var(--font-mono);
  10. font-weight: 500;
  11. text-transform: uppercase;
  12. background-color: var(--avatar-bg);
  13. color: oklch(from var(--avatar-bg) calc(l * 0.72) calc(c * 8) h);
  14. }
  15. [data-component="avatar"][data-size="small"] {
  16. width: 1.25rem;
  17. height: 1.25rem;
  18. font-size: 0.75rem;
  19. line-height: 1;
  20. }
  21. [data-component="avatar"][data-size="normal"] {
  22. width: 1.5rem;
  23. height: 1.5rem;
  24. font-size: 1.125rem;
  25. line-height: 1.5rem;
  26. }
  27. [data-component="avatar"][data-size="large"] {
  28. width: 2rem;
  29. height: 2rem;
  30. font-size: 1.25rem;
  31. line-height: 2rem;
  32. }