-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathgradient.css
More file actions
96 lines (93 loc) · 2.27 KB
/
gradient.css
File metadata and controls
96 lines (93 loc) · 2.27 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
:root {
--gradient-dir1: 45deg;
--gradient-dir2: 90deg;
--gradient-dir3: -45deg;
}
.mtk10,
.mtk15 {
color: transparent;
background-image: linear-gradient(to left top, #fc6c8f, #ff2ced, #ffb86c);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.mtk5 {
color: transparent;
background-image: linear-gradient(var(--gradient-dir1), #20e3b2, #4dd78a);
background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.mtk16 {
color: transparent;
background-image: linear-gradient(var(--gradient-dir1), #d66efd, #6a5af9);
background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.mtk9,
.mtk17 {
color: transparent;
background-image: linear-gradient(to right top, #0072ff, #2cccff);
background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.mtk18 {
color: transparent;
background-image: linear-gradient(var(--gradient-dir2), #82aaff 50%, #3d6ef7);
background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
font-style: normal;
}
.mtk3 {
color: transparent;
background-image: linear-gradient(to right top, #c29ffd, #ffb4dc, #fef0d1);
background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.mtk7 {
color: transparent;
background-image: linear-gradient(to right bottom, #fc6c8f, #ffb86c);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Other */
.monaco-workbench
.activitybar
> .content
:not(.monaco-menu)
> .monaco-action-bar
.action-item.checked
.active-item-indicator:before {
border: 0;
width: 3px;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-image: linear-gradient(to bottom, #fc6c8f, #ff2ced);
}
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active.tab-border-top
> .tab-border-top-container {
background-image: linear-gradient(to left, #fc6c8f, #ff2ced);
height: 3px;
}
.monaco-workbench
.activitybar
> .content
:not(.monaco-menu)
> .monaco-action-bar
.badge
.badge-content {
background-image: linear-gradient(var(--gradient-dir2), #fc6c8f, #ff2ced);
}