-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
29 lines (25 loc) · 898 Bytes
/
globals.css
File metadata and controls
29 lines (25 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
.gemini-text {
font-family: Google Sans, Helvetica Neue, sans-serif;
/* Choose a font that matches, Arial is a common sans-serif */
/* font-size: 100px; */
/* Adjust size as needed */
/* Gradient: Adjust colors and angles as needed */
background: linear-gradient(to right, #6B50D2, #C25CB6, #EA668A);
/*
Color Hex codes approximated from the image:
Left (Blue-Purple): #6B50D2
Middle (Pink-Purple): #C25CB6
Right (Reddish-Pink): #EA668A
*/
/* Crucial properties for text gradient */
-webkit-background-clip: text;
/* For Safari/Chrome */
background-clip: text;
color: transparent;
/* Makes the original text color transparent */
/* Optional: A slight text shadow can make it pop on some backgrounds */
/* text-shadow: 2px 2px 4px rgba(0,0,0,0.1); */
}