diff --git a/resources/views/emails/auth/verify.blade.php b/resources/views/emails/auth/verify.blade.php
index 9fd5011a..f4b8fb56 100644
--- a/resources/views/emails/auth/verify.blade.php
+++ b/resources/views/emails/auth/verify.blade.php
@@ -5,7 +5,7 @@
a { text-decoration: none; }
p { margin: 48px 0; line-height: 24px; }
table { width: 100%; border-spacing: 0; }
- .button { background-color: #262C89; color: white; padding: 16px 80px; border-radius: 12px; }
+ .button { background-color: #E4007D; color: white; padding: 16px 80px; border-radius: 12px; }
@@ -24,7 +24,7 @@
Jeśli prośba nie została zainicjonowana przez Ciebie, możesz zignorować tę wiadomość.
-
Pozdrawiamy,
{{ config('app.name') }}
+
Pozdrawiamy,
{{ config('app.name') }}
diff --git a/resources/views/errors/minimal.blade.php b/resources/views/errors/minimal.blade.php
index f42b185c..b5392f29 100644
--- a/resources/views/errors/minimal.blade.php
+++ b/resources/views/errors/minimal.blade.php
@@ -16,10 +16,10 @@
* { margin: 0; padding: 0; }
html, body { height: 100%; }
body { display: flex; justify-content: center; align-items: center; font-family: 'Poppins', sans-serif; color: #333; position: relative; max-width: 48rem; margin:auto }
- h1 { font-size: 3rem; margin-bottom: 1rem; color: #262c89; }
+ h1 { font-size: 3rem; margin-bottom: 1rem; color: #E4007D; }
p { font-size: 1rem; margin-bottom: 2rem }
b { font-size: 1.2rem; margin-bottom: 2rem; font-weight: bold }
- a { text-decoration: none; background-color: #262c89; color: white; font-size: rem; font-weight: 600; padding: .6rem 1rem; border-radius: .8rem; }
+ a { text-decoration: none; background-color: #E4007D; color: white; font-size: rem; font-weight: 600; padding: .6rem 1rem; border-radius: .8rem; }
.container { display: flex; flex-direction: column; align-items: center; text-align: center }
.bg-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(255, 255, 255, 0.6); z-index: -10 }
.blur-background { position: fixed; width: 58.33%; height: 100%; opacity: 0.7; filter: blur(48px); z-index: -10 }
diff --git a/tailwind.config.js b/tailwind.config.js
index 9650311f..05a7e2da 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -49,91 +49,40 @@ module.exports = {
},
colors: {
'primary': {
- 'DEFAULT': '#262c89',
- '50': '#ecf3ff',
- '100': '#dde8ff',
- '200': '#c2d5ff',
- '300': '#9db9ff',
- '400': '#7691ff',
- '500': '#556aff',
- '600': '#373ff4',
- '700': '#2a2fd8',
- '800': '#252bae',
- '900': '#262c89',
- '950': '#141647',
- },
- 'secondary': {
- 'DEFAULT': '#c9cefc',
- '50': '#eff0fe',
- '100': '#e1e5fe',
- '200': '#c9cefc',
- '300': '#a8aef9',
- '400': '#8585f4',
- '500': '#7268ec',
- '600': '#634cdf',
- '700': '#563dc5',
- '800': '#46349f',
- '900': '#363765',
- '950': '#241d49',
- },
- 'accent': {
- 'DEFAULT': '#6566C2',
- '50': '#f2f5fb',
- '100': '#e7ecf8',
- '200': '#d3dbf2',
- '300': '#b8c3e9',
- '400': '#9aa6df',
- '500': '#8189d3',
- '600': '#6566c2',
- '700': '#5757ab',
- '800': '#48488b',
- '900': '#40426f',
- '950': '#252541',
- },
- 'rose': {
- 'DEFAULT': '#f70279',
- '50': '#fff0f9',
- '100': '#ffe3f5',
- '200': '#ffc7eb',
- '300': '#ff99d9',
- '400': '#ff59be',
- '500': '#ff29a2',
- '600': '#f70279',
- '700': '#dd0061',
- '800': '#b60050',
- '900': '#970445',
- '950': '#5e0025',
+ 'DEFAULT': 'rgb(var(--color-primary))',
+ 'bright': 'rgb(var(--color-primary-bright))',
+ 'dark': 'rgb(var(--color-primary-dark))',
},
'red': {
'DEFAULT': '#ff0000',
- '50': '#fff0f0',
- '100': '#ffdddd',
- '200': '#ffc0c0',
- '300': '#ff9494',
- '400': '#ff5757',
'500': '#ff2323',
- '600': '#ff0000',
- '700': '#d70000',
- '800': '#b10303',
- '900': '#920a0a',
- '950': '#500000',
},
- "gradient":{"start":"#9198e5", "end":"#1f0843"},
+ "gradient": {
+ "start":"#9198e5",
+ "end":"#1f0843"
+ },
}
},
},
plugins: [
- plugin(function ({ addComponents, addVariant }) {
+ plugin(function ({ addComponents, addVariant, addBase }) {
addVariant('hover-focus', ['&:hover', '&:focus']);
+ addBase({
+ ':root': {
+ '--color-primary': '228 0 125',
+ '--color-primary-bright': '245 13 147',
+ '--color-primary-dark': '176 4 96',
+ },
+ });
addComponents({
'.icon': {
- '@apply size-6 stroke-2 text-primary hover:text-primary-800 transition-colors duration-200':{},
+ '@apply size-6 stroke-2 text-primary hover:text-primary-bright transition-colors duration-200':{},
},
'.slide-up-animation' : {
'@apply hover:-translate-y-1 h-full transition-transform ease-in duration-150':{},
},
'.icon-button': {
- '@apply flex gap-2 w-fit font-bold text-primary hover:text-primary-800 text-percentage-105':{},
+ '@apply flex gap-2 w-fit font-bold text-primary hover:text-primary-bright text-percentage-105':{},
}
})
}),