Skip to content

Commit 020ea40

Browse files
author
sudo-self
committed
style: update theme to pure black and neutral greys
1 parent 52f3e5f commit 020ea40

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<title>{{ page.title }}</title>
1111
<script src="https://cdn.tailwindcss.com"></script>
1212
</head>
13-
<body class="bg-gray-900 text-white flex flex-col items-center min-h-screen p-6">
13+
<body class="bg-black text-neutral-100 flex flex-col items-center min-h-screen p-6">
1414

15-
<h1 class="text-3xl font-bold mb-4"><a href="{{ site.baseurl }}/">{{ page.title }}</a></h1>
15+
<h1 class="text-3xl font-bold mb-4 text-white"><a href="{{ site.baseurl }}/">{{ page.title }}</a></h1>
1616

1717
<!-- GitHub badges -->
1818
<div class="flex space-x-4 mb-6">
@@ -25,17 +25,17 @@ <h1 class="text-3xl font-bold mb-4"><a href="{{ site.baseurl }}/">{{ page.title
2525
</div>
2626

2727
<!-- File list -->
28-
<div id="file-list" class="w-full max-w-2xl bg-gray-800 p-4 rounded-xl space-y-2">
28+
<div id="file-list" class="w-full max-w-2xl bg-neutral-900 p-4 rounded-xl space-y-2 border border-neutral-800">
2929
{% assign ipas = site.static_files | where_exp: "file", "file.extname == '.ipa'" | sort: "name" %}
3030
{% for ipa in ipas %}
31-
<a href="{{ site.baseurl }}{{ ipa.path }}" class="block bg-gray-700 hover:bg-gray-600 p-3 rounded-lg flex justify-between items-center">
32-
<span>{{ ipa.name }}</span>
33-
<span class="text-xs text-gray-400">{{ ipa.modified_time | date: "%Y-%m-%d" }}</span>
31+
<a href="{{ site.baseurl }}{{ ipa.path }}" class="block bg-neutral-800 hover:bg-neutral-700 p-3 rounded-lg flex justify-between items-center transition-colors">
32+
<span class="text-neutral-200">{{ ipa.name }}</span>
33+
<span class="text-xs text-neutral-400">{{ ipa.modified_time | date: "%Y-%m-%d" }}</span>
3434
</a>
3535
{% endfor %}
3636
</div>
3737

38-
<footer class="mt-6 text-sm text-gray-500">sudo-self/iOS-Cracked-Apps</footer>
38+
<footer class="mt-6 text-sm text-neutral-500">sudo-self/iOS-Cracked-Apps</footer>
3939

4040
</body>
4141
</html>

0 commit comments

Comments
 (0)