website-front/banquise-website/test-colors.html
Sacha VAUDEY d36f6f48e8
Some checks failed
Build / build-check (pull_request) Failing after 57s
update to Tailwind v4
2025-09-13 22:26:20 +02:00

53 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test Couleurs Banquise</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
banquise: {
blue: '#34a6fc',
'blue-dark': '#1f5078',
'blue-light': '#76beee',
'blue-lightest': '#a0ecf9',
gray: '#F6F6F6',
},
},
}
}
}
</script>
</head>
<body class="p-8">
<h1 class="text-2xl font-bold mb-4">Test des couleurs Banquise</h1>
<div class="space-y-4">
<div class="p-4 bg-banquise-blue text-white rounded">
Couleur banquise-blue (#34a6fc)
</div>
<div class="p-4 bg-banquise-blue-dark text-white rounded">
Couleur banquise-blue-dark (#1f5078)
</div>
<div class="p-4 bg-banquise-blue-light text-white rounded">
Couleur banquise-blue-light (#76beee)
</div>
<div class="p-4 bg-banquise-blue-lightest text-black rounded">
Couleur banquise-blue-lightest (#a0ecf9)
</div>
<div class="p-4 bg-banquise-gray text-black rounded">
Couleur banquise-gray (#F6F6F6)
</div>
<button class="px-4 py-2 bg-gradient-to-r from-banquise-blue to-banquise-blue-light text-white rounded">
Bouton avec gradient banquise
</button>
</div>
</body>
</html>