-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathApp.vue
240 lines (198 loc) · 8.69 KB
/
App.vue
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<template>
<div class="flex flex-col min-h-screen font-inter bg-[#FCFCFD]">
<header-component />
<generator-component :gradients="gradients" />
<gradient-examples :gradients="gradients" />
<section class="container px-4 pb-20 mx-auto">
<div class="lg:flex lg:items-center lg:space-x-12">
<div class="lg:w-1/2 ">
<span class="text-xl font-bold text-transparent bg-gradient-to-r from-sky-500 via-blue-500 to-blue-600 bg-clip-text">
Open Source Tool
</span>
<h2 class="mt-4 text-3xl font-bold text-gray-800">
Tailwind CSS Gradient Generator
</h2>
<p class="mt-4 text-gray-500">
Gradient refers to the gradual transition from one color to another color or multiple colors. It makes objects stand out by adding a new dimension to the design and adding realism to the object. In fact, real life is not made of flat objects with flat colors.
</p>
<div class="flex items-center justify-center max-w-2xl px-4 mx-auto mt-4 text-base text-center text-gray-500 dark:text-gray-400 md:text-lg">
<a href="https://www.material-tailwind.com/roots-of-ui-ux-design?ref=tc-gradient" target="_blank">
<img src="./assets/banner-root-ui-ux-book.png" alt="Roots of UI/UX Design - Learn to Develop Intuitive Web Experiences." class="rounded-lg"/>
</a>
</div>
<p class="mt-4 text-gray-500">
We created this tool to help you give life to your UI/UX Designs. It is based on Tailwind CSS, one of the most popular frameworks nowadays. Our Tailwind CSS gradients can be used in typography, buttons, cards, headers, illustrations - on almost all UI elements.
</p>
</div>
<img class="mx-auto mt-8 lg:max-w-2xl lg:mt-0 lg:w-1/2 " src="./assets/cards.webp" alt="">
</div>
</section>
<footer-component />
</div>
</template>
<script>
import HeaderComponent from './components/Header.vue';
import GeneratorComponent from './components/Generator.vue';
import GradientExamples from './components/GradientExamples.vue';
import FooterComponent from './components/Footer.vue';
export default {
name: 'App',
components: { HeaderComponent, GeneratorComponent, GradientExamples, FooterComponent },
data() {
return {
gradients: [
{
title: 'Sunset',
classTitle: 'red-500 - orange-500',
style: 'bg-gradient-to-r from-red-500 to-orange-500'
},
{
title: 'Poppy',
classTitle: 'rose-400 - red-500',
style: 'bg-gradient-to-r from-rose-400 to-red-500'
},
{
title: 'Rosebud',
classTitle: 'pink-500 - rose-500',
style: 'bg-gradient-to-r from-pink-500 to-rose-500'
},
{
title: 'Sunshine',
classTitle: 'amber-200 - yellow-400',
style: 'bg-gradient-to-r from-amber-200 to-yellow-400'
},
{
title: 'Gold',
classTitle: 'amber-200 - yellow-500',
style: 'bg-gradient-to-r from-amber-200 to-yellow-500'
},
{
title: 'Twilight',
classTitle: 'amber-500 - pink-500',
style: 'bg-gradient-to-r from-amber-500 to-pink-500'
},
{
title: 'Powder',
classTitle: 'violet-200 - pink-200',
style: 'bg-gradient-to-r from-violet-200 to-pink-200'
},
{
title: 'Holly',
classTitle: 'blue-200 - cyan-200',
style: 'bg-gradient-to-r from-blue-200 to-cyan-200'
},
{
title: 'Northern Lights',
classTitle: 'teal-200 - teal-500',
style: 'bg-gradient-to-r from-teal-200 to-teal-500'
},
{
title: 'Raw Green',
classTitle: 'lime-400 - lime-500',
style: 'bg-gradient-to-r from-lime-400 to-lime-500'
},
{
title: 'Lime',
classTitle: 'teal-400 - yellow-200',
style: 'bg-gradient-to-r from-teal-400 to-yellow-200'
},
{
title: 'Nemesia',
classTitle: 'emerald-400 - cyan-400',
style: 'bg-gradient-to-r from-emerald-400 to-cyan-400'
},
{
title: 'Snowflake',
classTitle: 'indigo-400 - cyan-400',
style: 'bg-gradient-to-r from-indigo-400 to-cyan-400'
},
{
title: 'Blue Bird',
classTitle: 'cyan-500 - blue-500',
style: 'bg-gradient-to-r from-cyan-500 to-blue-500'
},
{
title: 'Blueprint',
classTitle: 'indigo-500 - blue-500',
style: 'bg-gradient-to-r from-indigo-500 to-blue-500'
},
{
title: 'Salvia',
classTitle: 'blue-600 - violet-600',
style: 'bg-gradient-to-r from-blue-600 to-violet-600'
},
{
title: 'Snowflake',
classTitle: 'fuchsia-500 - cyan-500',
style: 'bg-gradient-to-r from-fuchsia-500 to-cyan-500'
},
{
title: 'Heartsease',
classTitle: 'fuchsia-600 - pink-600',
style: 'bg-gradient-to-r from-fuchsia-600 to-pink-600'
},
{
title: 'Amaranthus',
classTitle: 'fuchsia-600 - purple-600',
style: 'bg-gradient-to-r from-fuchsia-600 to-purple-600'
},
{
title: 'Candy',
classTitle: 'fuchsia-500 - pink-500',
style: 'bg-gradient-to-r from-fuchsia-500 to-pink-500'
},
{
title: 'Verbena',
classTitle: 'violet-500 - purple 500',
style: 'bg-gradient-to-r from-violet-500 to-purple-500'
},
{
title: 'Clematis',
classTitle: 'violet-600 - indigo-600',
style: 'bg-gradient-to-r from-violet-600 to-indigo-600'
},
{
title: 'Hibiscus',
classTitle: 'purple-500 - purple-900',
style: 'bg-gradient-to-r from-purple-500 to-purple-900'
},
{
title: 'Clear Night',
classTitle: 'blue-800 - indigo-900',
style: 'bg-gradient-to-r from-blue-800 to-indigo-900'
},
{
title: 'Clay',
classTitle: 'neutral-300 - stone-400',
style: 'bg-gradient-to-r from-neutral-300 to-stone-400'
},
{
title: 'Soil',
classTitle: 'stone-500 - stone-700',
style: 'bg-gradient-to-r from-stone-500 to-stone-700'
},
{
title: 'Silver',
classTitle: 'slate-300 - slate-500',
style: 'bg-gradient-to-r from-slate-300 to-slate-500'
},
{
title: 'Fir Tree',
classTitle: 'emerald-500 - emerald-900',
style: 'bg-gradient-to-r from-emerald-500 to-emerald-900'
},
{
title: 'Metal',
classTitle: 'slate-500 - slate-800',
style: 'bg-gradient-to-r from-slate-500 to-slate-800'
},
{
title: 'Darkness',
classTitle: 'slate-900 - slate-700',
style: 'bg-gradient-to-r from-slate-900 to-slate-700'
},
]
}
}
}
</script>