main.css 648 B

1234567891011121314151617181920212223242526272829303132
  1. @import "tailwindcss";
  2. @import "@nuxt/ui";
  3. @import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
  4. html {
  5. scroll-behavior: smooth;
  6. }
  7. body {
  8. font-family: 'Exo', sans-serif;
  9. color: #202020;
  10. }
  11. ::selection {
  12. background: #C8E600;
  13. color: #0A0B09;
  14. }
  15. .text-gradient {
  16. @apply bg-radial from-white to-[#E3FA6D] bg-clip-text text-transparent;
  17. }
  18. :root {
  19. --color-primary: #8AAB10;
  20. }
  21. @theme {
  22. --font-inter: 'Inter', sans-serif;
  23. --font-open-sans: 'Open Sans', sans-serif;
  24. }