-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
51 lines (44 loc) · 1.99 KB
/
script.js
File metadata and controls
51 lines (44 loc) · 1.99 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
/**
* @license
* Copyright © 2026 Ashraf Morningstar
* https://github.com/AshrafMorningstar
*
* Licensed under the MIT License.
* This is a personal educational recreation.
* Original project concepts remain property of their respective creators.
*/
/*
Copyright (c) 2026 Ashraf Morningstar
These are personal recreations of existing projects, developed by Ashraf Morningstar
for learning and skill development.
Original project concepts remain the intellectual property of their respective creators.
Repository: https://github.com/AshrafMorningstar
*/
/**
* ═══════════════════════════════════════════════════════════════════════════════
* Color Palette Generator
* Created by: Ashraf Morningstar
* GitHub: https://github.com/AshrafMorningstar
* Repository: https://github.com/AshrafMorningstar/Ultimate-Web-Dev-Journey
*/
document.addEventListener('DOMContentLoaded', function() {
console.log('Color Palette Generator initialized by Ashraf Morningstar');
const app = document.getElementById('app');
// Initialize the application
init();
function init() {
app.innerHTML = `
<div style="text-align: center; padding: 40px 0;">
<h2 style="color: #6C63FF; margin-bottom: 20px;">🚀 Fully Functional Color Palette Generator</h2>
<p style="color: #666; margin-bottom: 30px;">This project is fully working and ready to use!</p>
<button onclick="handleAction()">Get Started</button>
</div>
`;
}
});
function handleAction() {
alert('Color Palette Generator is fully functional! Created by Ashraf Morningstar');
console.log('Action triggered - Project by Ashraf Morningstar');
}
// 🤣 Fun Fact: If it works, don't touch it!
console.log("%cIf it works, don't touch it!", "color: #6C63FF; font-size: 20px; font-weight: bold;");