diff --git a/tailwind.config.js b/tailwind.config.js index 4a88829..fcd89f6 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -11,10 +11,15 @@ module.exports = { DEFAULT: '#56a9db', dark: '#1772ae', }, + bronze: '#998100', + gold: '#e6c200', gray: { + light: '#fafafa', dark: '#333333', }, orange: '#fcb040', + platinum: '#666666', + silver: '#999999', white: '#ffffff', }, extend: { diff --git a/templates/includes/home/sponsors.html.twig b/templates/includes/home/sponsors.html.twig index 1cd462a..1f23e27 100644 --- a/templates/includes/home/sponsors.html.twig +++ b/templates/includes/home/sponsors.html.twig @@ -1,5 +1,5 @@ -
-

Sponsors

+
+

Sponsors

{% include 'includes/sponsor-list.html.twig' with { diff --git a/templates/includes/sponsor-list.html.twig b/templates/includes/sponsor-list.html.twig index d5af54e..8bf6610 100644 --- a/templates/includes/sponsor-list.html.twig +++ b/templates/includes/sponsor-list.html.twig @@ -1,14 +1,27 @@ -
-

{{ title }}

+{% set titleClasses = [ + 'text-5xl font-display', + type == 'bronze' ? 'text-bronze', + type == 'gold' ? 'text-gold', + type == 'in_kind' ? 'text-blue-dark', + type == 'platinum' ? 'text-platinum', + type == 'silver' ? 'text-silver', +] %} - +
+

{{ title }}

+ +
+ +