eyeofsauronos / styling-guide.html
dydact's picture
begin by cloning palantir.com fully, we will then modify it to suit my needs with a styling guidance document for you.
d12b663 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EyeOfSauronOS Styling Guide</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.color-swatch {
width: 120px;
height: 120px;
border-radius: 8px;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 8px;
margin: 8px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.typo-example {
border-left: 4px solid #3b82f6;
padding-left: 12px;
margin: 16px 0;
}
</style>
</head>
<body class="bg-gray-50 text-gray-900">
<div class="container mx-auto px-6 py-12">
<h1 class="text-4xl font-bold mb-2">EyeOfSauronOS Design System</h1>
<p class="text-xl text-gray-600 mb-12">The comprehensive styling guide for building consistent Mordor-approved interfaces</p>
<section class="mb-16">
<h2 class="text-2xl font-bold mb-6 border-b pb-2">Color Palette</h2>
<div class="flex flex-wrap">
<div class="color-swatch" style="background-color: #0d1421;">
<span class="text-white">Dark Void</span>
<span class="text-gray-300 text-sm">#0d1421</span>
</div>
<div class="color-swatch" style="background-color: #1e293b;">
<span class="text-white">Shadow Realm</span>
<span class="text-gray-300 text-sm">#1e293b</span>
</div>
<div class="color-swatch" style="background-color: #3b82f6;">
<span class="text-white">Eye Blue</span>
<span class="text-white text-sm">#3b82f6</span>
</div>
<div class="color-swatch" style="background-color: #10b981;">
<span class="text-white">Orc Green</span>
<span class="text-white text-sm">#10b981</span>
</div>
<div class="color-swatch" style="background-color: #f59e0b;">
<span class="text-white">Ring Gold</span>
<span class="text-white text-sm">#f59e0b</span>
</div>
</div>
</section>
<section class="mb-16">
<h2 class="text-2xl font-bold mb-6 border-b pb-2">Typography</h2>
<div class="typo-example">
<h3 class="text-sm font-semibold text-gray-500 mb-1">HEADING 1</h3>
<h1 class="text-5xl font-bold mb-4">Omniscient Surveillance</h1>
</div>
<div class="typo-example">
<h3 class="text-sm font-semibold text-gray-500 mb-1">HEADING 2</h3>
<h2 class="text-3xl font-bold mb-4">Dark Intelligence Reports</h2>
</div>
<div class="typo-example">
<h3 class="text-sm font-semibold text-gray-500 mb-1">HEADING 3</h3>
<h3 class="text-xl font-bold mb-4">Nazgûl Team Members</h3>
</div>
<div class="typo-example">
<h3 class="text-sm font-semibold text-gray-500 mb-1">BODY TEXT</h3>
<p class="text-base mb-4">Our platform provides unparalleled insight into all enterprise activities. With real-time monitoring and predictive analytics, we help you maintain absolute control over your domain. The Eye sees all.</p>
</div>
<div class="typo-example">
<h3 class="text-sm font-semibold text-gray-500 mb-1">CAPTION TEXT</h3>
<p class="text-sm text-gray-500 mb-4">Data last collected at the Cracks of Doom on 10/25/2023</p>
</div>
</section>
<section class="mb-16">
<h2 class="text-2xl font-bold mb-6 border-b pb-2">UI Components</h2>
<div class="grid md:grid-cols-2 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4">Buttons</h3>
<div class="space-y-4">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md">Primary Action</button>
<button class="bg-gray-800 hover:bg-gray-700 text-white px-6 py-3 rounded-md border border-gray-700">Secondary</button>
<button class="text-blue-500 hover:text-blue-400 px-6 py-3 rounded-md border border-blue-500 hover:border-blue-400">Tertiary</button>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Cards</h3>
<div class="bg-gray-800 p-6 rounded-lg">
<div class="w-12 h-12 bg-blue-900 rounded-full flex items-center justify-center mb-4">
<i data-feather="eye" class="w-5 h-5 text-blue-400"></i>
</div>
<h4 class="text-lg font-bold mb-2">All-Seeing Module</h4>
<p class="text-gray-400 text-sm">Track movements across all nine realms with our patented dark vision technology.</p>
</div>
</div>
</div>
</section>
<section class="mb-16">
<h2 class="text-2xl font-bold mb-6 border-b pb-2">Iconography</h2>
<div class="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-6 gap-6">
<div class="flex flex-col items-center">
<i data-feather="eye" class="w-8 h-8 text-blue-500 mb-2"></i>
<span class="text-xs text-gray-600">eye</span>
</div>
<div class="flex flex-col items-center">
<i data-feather="search" class="w-8 h-8 text-blue-500 mb-2"></i>
<span class="text-xs text-gray-600">search</span>
</div>
<div class="flex flex-col items-center">
<i data-feather="shield" class="w-8 h-8 text-blue-500 mb-2"></i>
<span class="text-xs text-gray-600">shield</span>
</div>
<div class="flex flex-col items-center">
<i data-feather="cpu" class="w-8 h-8 text-blue-500 mb-2"></i>
<span class="text-xs text-gray-600">cpu</span>
</div>
<div class="flex flex-col items-center">
<i data-feather="globe" class="w-8 h-8 text-blue-500 mb-2"></i>
<span class="text-xs text-gray-600">globe</span>
</div>
<div class="flex flex-col items-center">
<i data-feather="users" class="w-8 h-8 text-blue-500 mb-2"></i>
<span class="text-xs text-gray-600">users</span>
</div>
</div>
</section>
<section>
<h2 class="text-2xl font-bold mb-6 border-b pb-2">Motion Principles</h2>
<div class="bg-gray-100 p-6 rounded-lg">
<h3 class="text-lg font-semibold mb-4">Interaction Guidelines</h3>
<ul class="list-disc pl-5 space-y-2 text-gray-700">
<li>Hover effects should be subtle but noticeable (scale 105%, slight elevation)</li>
<li>Transitions should last 300ms with ease-in-out timing</li>
<li>Modal appearances should have a slight fade and upward movement</li>
<li>Important alerts should pulse gently to attract the Eye's attention</li>
</ul>
</div>
</section>
</div>
<script>
feather.replace();
</script>
</body>
</html>