Initial commit of Palina Ghost theme
This commit is contained in:
20
assets/css/tailwind.css
Normal file
20
assets/css/tailwind.css
Normal file
@@ -0,0 +1,20 @@
|
||||
@import "tailwindcss";
|
||||
|
||||
@theme {
|
||||
--color-gray-900: #1a1a1a;
|
||||
--color-gray-800: #2b2b2b;
|
||||
--color-gray-700: #3c3c3c;
|
||||
--color-gray-500: #808080;
|
||||
--color-gray-400: #a0a0a0;
|
||||
--color-gray-200: #e0e0e0;
|
||||
--color-gray-100: #f5f5f5;
|
||||
--color-indigo-600: #4f46e5;
|
||||
--color-indigo-700: #4338ca;
|
||||
--font-family-sans: "Inter", sans-serif;
|
||||
}
|
||||
|
||||
@layer base {
|
||||
body {
|
||||
@apply bg-gray-900 text-gray-100;
|
||||
}
|
||||
}
|
||||
7
assets/js/main.js
Normal file
7
assets/js/main.js
Normal file
@@ -0,0 +1,7 @@
|
||||
// Main JavaScript file for Palina theme
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
console.log('Palina theme loaded!');
|
||||
|
||||
// Add any interactive JavaScript here
|
||||
// For example, a simple image modal or lazy loading
|
||||
});
|
||||
Reference in New Issue
Block a user