diff --git a/css/index.css b/css/index.css index b5c61c9..cf0f334 100644 --- a/css/index.css +++ b/css/index.css @@ -1,3 +1,9 @@ @tailwind base; @tailwind components; @tailwind utilities; + +@layer base { + :root { + --color-kamilcraft-green: 162 207 0; + } +} \ No newline at end of file diff --git a/src/components/SiteHeader.vue b/src/components/SiteHeader.vue index 16ba9f5..80f55e4 100644 --- a/src/components/SiteHeader.vue +++ b/src/components/SiteHeader.vue @@ -3,10 +3,12 @@
-

{{ getTitle }}

+

+ {{ getTitle }} +

{{ getDescription }}

@@ -42,38 +44,11 @@ const descriptionType = computed(() => { }) - diff --git a/tailwind.config.js b/tailwind.config.js index 3dde3fd..ec69f28 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,26 +5,22 @@ module.exports = { ], darkMode: true, theme: { - fontFamily: { - 'arial': ['Arial', 'sans-serif'], - 'roboto': ['Roboto', 'sans-serif'], - 'thasadith': ['Thasadith', 'sans-serif'] + extend: { + fontFamily: { + 'arial': ['Arial', 'sans-serif'], + 'roboto': ['Roboto', 'sans-serif'], + 'thasadith': ['Thasadith', 'sans-serif'] + }, + fontSize: { + 'logo-size': '2.5rem', + }, + screens: { + 'header-content': '900px' + }, + colors: { + 'kamilcraft-green': 'rgb(var(--color-kamilcraft-green) / )' + } }, - fontSize: { - 'logo-size': '2.5rem', - 'xs': '.75rem', - 'sm': '.875rem', - 'tiny': '.875rem', - 'base': '1rem', - 'lg': '1.125rem', - 'xl': '1.25rem', - '2xl': '1.5rem', - '3xl': '1.875rem', - '4xl': '2.25rem', - '5xl': '3rem', - '6xl': '4rem', - '7xl': '5rem' - } }, plugins: [], }