53 lines
1.6 KiB
HTML
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> |