-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathgay.css
More file actions
105 lines (95 loc) · 3.6 KB
/
gay.css
File metadata and controls
105 lines (95 loc) · 3.6 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* Gay theme */
[data-color-theme="gay"] {
--theme-primary: #078D70;
--theme-secondary: #26CEAA;
--theme-accent: #98E8C1;
}
[data-color-theme="gay"] .gradient-hero {
background-image: linear-gradient(to bottom right,
#078D70 0%, #078D70 14.28%,
#26CEAA 14.28%, #26CEAA 28.56%,
#98E8C1 28.56%, #98E8C1 42.84%,
#FFFFFF 42.84%, #FFFFFF 57.12%,
#7BADE2 57.12%, #7BADE2 71.4%,
#5049CC 71.4%, #5049CC 85.68%,
#3D1A78 85.68%, #3D1A78 100%) !important;
}
[data-color-theme="gay"] .gradient-header {
background-image: linear-gradient(to right,
#078D70 0%, #078D70 14.28%,
#26CEAA 14.28%, #26CEAA 28.56%,
#98E8C1 28.56%, #98E8C1 42.84%,
#FFFFFF 42.84%, #FFFFFF 57.12%,
#7BADE2 57.12%, #7BADE2 71.4%,
#5049CC 71.4%, #5049CC 85.68%,
#3D1A78 85.68%, #3D1A78 100%) !important;
}
[data-color-theme="gay"] .gradient-text {
background: linear-gradient(
to right,
#078D70 0%,
#078D70 16.67%,
#26CEAA 16.67%,
#26CEAA 33.33%,
#98E8C1 33.33%,
#98E8C1 50%,
#7BADE2 50%,
#7BADE2 66.67%,
#5049CC 66.67%,
#5049CC 83.33%,
#3D1A78 83.33%,
#3D1A78 100%
);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
/* Add backdrop blur to gradient sections */
[data-color-theme="gay"] section.gradient-hero .max-w-7xl.py-20,
[data-color-theme="gay"] section.gradient-header .max-w-7xl.py-20,
[data-color-theme="gay"] section.gradient-hero .max-w-7xl.py-8.text-center,
[data-color-theme="gay"] section.gradient-header .max-w-7xl.py-8.text-center,
[data-color-theme="gay"] section.gradient-hero .max-w-7xl.text-center,
[data-color-theme="gay"] section.gradient-header .max-w-7xl.text-center,
[data-color-theme="gay"] section.gradient-hero .max-w-7xl:has(h1.gradient-text-hero),
[data-color-theme="gay"] section.gradient-header .max-w-7xl:has(h1.gradient-text-hero) {
background: rgba(0, 0, 0, 0.2);
border-radius: 16px;
backdrop-filter: blur(4px);
}
.dark[data-color-theme="gay"] section.gradient-hero .max-w-7xl.py-20,
.dark[data-color-theme="gay"] section.gradient-header .max-w-7xl.py-20,
.dark[data-color-theme="gay"] section.gradient-hero .max-w-7xl.py-8.text-center,
.dark[data-color-theme="gay"] section.gradient-header .max-w-7xl.py-8.text-center,
.dark[data-color-theme="gay"] section.gradient-hero .max-w-7xl.text-center,
.dark[data-color-theme="gay"] section.gradient-header .max-w-7xl.text-center,
.dark[data-color-theme="gay"] section.gradient-hero .max-w-7xl:has(h1.gradient-text-hero),
.dark[data-color-theme="gay"] section.gradient-header .max-w-7xl:has(h1.gradient-text-hero) {
background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
backdrop-filter: blur(4px);
}
/* Ensure white sections are fully opaque on Gay theme - light mode only */
:not(.dark)[data-color-theme="gay"] .bg-white,
:not(.dark)[data-color-theme="gay"] section.bg-white {
background: #ffffff !important;
}
/* Override for dark mode - must come after light mode rules */
.dark[data-color-theme="gay"] .bg-white,
.dark[data-color-theme="gay"] section.bg-white,
.dark[data-color-theme="gay"] .bg-white.dark\:bg-ipython-dark,
.dark[data-color-theme="gay"] nav.bg-white {
background: #0f172a !important;
}
/* Ensure gray sections are fully opaque white on Gay theme - light mode only */
:not(.dark)[data-color-theme="gay"] section.bg-gray-50 {
background: #ffffff !important;
}
.dark[data-color-theme="gay"] section.bg-gray-50 {
background: #0f172a !important;
}
/* Ensure icon containers have visible backgrounds on Gay theme */
[data-color-theme="gay"] .bg-theme-secondary {
background: #1f2937 !important;
}