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
export const typingcliStyles = `
.typewriter {
display: inline-block;
font-size: 24px;
font-weight: bold;
position: relative;
}
.typewriter span {
display: inline-block;
position: relative;
overflow: hidden;
padding: 2px 5px; /* Add small padding to the edges of each char */
color: #fff;
}
.typewriter span::before {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 0;
background-color: #e0e0e0; /* Lighter gray background */
animation: reveal 0.1s forwards;
}
.typewriter span.active {
color: #333; /* Dark gray text color when background passes */
}
@keyframes reveal {
0% {
width: 0;
}
100% {
width: 100%;
}
}
.typewriter {
display: inline-block;
font-size: 24px;
font-weight: bold;
position: relative;
}
.typewriter span {
display: inline-block;
position: relative;
overflow: hidden;
padding: 2px 5px; /* Add small padding to the edges of each char */
color: #fff;
background-color: transparent;
}
.typewriter span.active {
background-color: #d3d3d3; /* Light gray background */
color: #000; /* Darker text color */
}
@keyframes reveal {
0% {
width: 0;
}
100% {
width: 100%;
}
}
`