-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (84 loc) · 3.58 KB
/
Copy pathindex.html
File metadata and controls
103 lines (84 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="google-site-verification" content="kyurxBO2VgTCAP5YK3DMikRrnVPwO9chOlx_EnySTmw" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Gradify is a pro gradient generator that allows you to create beautiful gradients with ease. Customize colors, angles, and get the CSS code instantly.">
<meta name="keywords" content="gradient generator, CSS gradients, color gradients, gradient maker, web design tools, gradient code, color picker, gradient preview">
<meta name="author" content="Debapriya Bhanja">
<meta property="og:title" content="Gradify – Pro Gradient Generator">
<meta property="og:description" content="Gradify is a pro gradient generator that allows you to create beautiful gradients with ease. Customize colors, angles, and get the CSS code instantly.">
<meta property="og:image" content="https://gradify.vercel.app/preview.png">
<meta property="og:url" content="https://gradify.vercel.app">
<meta ref="canonical" href="https://gradify.vercel.app">
<meta robots="index, follow">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Gradify – Pro Gradient Generator">
<meta name="twitter:description" content="Gradify is a pro gradient generator that allows you to create beautiful gradients with ease. Customize colors, angles, and get the CSS code instantly.">
<meta name="twitter:image" content="https://gradify.vercel.app/preview.png">
<meta name="twitter:site" content="@debapriya_bhanja">
<meta name="twitter:creator" content="@debapriya_bhanja">
<meta name="theme-color" content="#4ecdc4">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Gradify">
<meta name="msapplication-TileColor" content="#4ecdc4">
<meta name="msapplication-TileImage" content="https://gradify.vercel.app/favicon-144x144.png">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<title>Gradify – Pro Gradient Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="app">
<!-- Header -->
<header>
<h1>🎨 Gradient Generator</h1>
<p>Create beautiful gradients instantly</p>
</header>
<!-- Preview Card -->
<div class="card preview-card">
<div id="preview"></div>
</div>
<!-- Controls -->
<div class="card controls">
<div class="control">
<label>Color 1</label>
<input type="color" id="color1" value="#ff6b6b">
</div>
<div class="control">
<label>Color 2</label>
<input type="color" id="color2" value="#4ecdc4">
</div>
<div class="control">
<label>Angle</label>
<input type="range" id="angle" min="0" max="360" value="90">
<span id="angleValue">90°</span>
</div>
</div>
<!-- Output -->
<div class="card output">
<h3>Generated Code</h3>
<div class="code">
<input id="cssCode" readonly>
<button onclick="copy('cssCode')">Copy</button>
</div>
<div class="code">
<input id="hexCode" readonly>
<button onclick="copy('hexCode')">HEX</button>
</div>
<div class="code">
<input id="rgbCode" readonly>
<button onclick="copy('rgbCode')">RGB</button>
</div>
<div class="code">
<input id="hslCode" readonly>
<button onclick="copy('hslCode')">HSL</button>
</div>
</div>
<!-- Toast -->
<div id="toast">Copied!</div>
</div>
<script src="script.js"></script>
</body>
</html>