Sync: IrisTEA - Plataforma de Chás Premium

This commit is contained in:
bigtux
2026-02-10 15:46:23 -03:00
parent 0b5b2c7ae6
commit a1ce0a2cad
14 changed files with 1506 additions and 127 deletions

View File

@@ -1,21 +1,22 @@
@import "tailwindcss";
:root {
--iris-purple: #6366f1;
--iris-purple-dark: #4f46e5;
--iris-blue: #3b82f6;
--iris-green: #10b981;
--iris-yellow: #f59e0b;
--iris-red: #ef4444;
--iris-rainbow: linear-gradient(90deg, #ef4444, #f59e0b, #eab308, #22c55e, #3b82f6, #8b5cf6);
@theme {
--color-iris-purple: #6366f1;
--color-iris-purple-dark: #4f46e5;
--color-iris-blue: #3b82f6;
--color-iris-green: #10b981;
--color-iris-yellow: #f59e0b;
--color-iris-red: #ef4444;
}
@source "../**/*.{js,ts,jsx,tsx,mdx}";
body {
font-family: 'Inter', system-ui, sans-serif;
}
.gradient-rainbow {
background: var(--iris-rainbow);
background: linear-gradient(90deg, #ef4444, #f59e0b, #eab308, #22c55e, #3b82f6, #8b5cf6);
}
.text-gradient {
@@ -33,25 +34,3 @@ body {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.chat-bubble {
position: relative;
}
.chat-bubble::after {
content: '';
position: absolute;
bottom: -8px;
left: 20px;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #f3f4f6;
}
.chat-bubble-right::after {
left: auto;
right: 20px;
border-top-color: #6366f1;
}