From 9ea25e6251d60d99e0491d6987e9ada8801c62d7 Mon Sep 17 00:00:00 2001 From: Jan_Hill Date: Fri, 20 Dec 2024 03:19:51 +0100 Subject: [PATCH] modified: resources/views/smart/dashboard modified: tailwind.config.js --- resources/views/smart/dashboard.blade.php | 205 ++++++++++++++++++++-- tailwind.config.js | 51 +++++- 2 files changed, 230 insertions(+), 26 deletions(-) diff --git a/resources/views/smart/dashboard.blade.php b/resources/views/smart/dashboard.blade.php index bd84366..74c2630 100644 --- a/resources/views/smart/dashboard.blade.php +++ b/resources/views/smart/dashboard.blade.php @@ -4,22 +4,189 @@ @vite(['resources/css/app.css','resources/js/app.js']) NCORE - Dashboard - - \ No newline at end of file + + + + + + \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index ca44760..864ad26 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,11 +5,48 @@ module.exports = { "./resources/**/*.vue", "./node_modules/flowbite/**/*.js" ], - theme: { - extend: {}, - }, - plugins: [ - require('flowbite/plugin') - ], darkMode: 'class', -} + theme: { + extend: { + colors: { + primary: {"50":"#eff6ff","100":"#dbeafe","200":"#bfdbfe","300":"#93c5fd","400":"#60a5fa","500":"#3b82f6","600":"#2563eb","700":"#1d4ed8","800":"#1e40af","900":"#1e3a8a","950":"#172554"} + } + }, + fontFamily: { + 'body': [ + 'Inter', + 'ui-sans-serif', + 'system-ui', + '-apple-system', + 'system-ui', + 'Segoe UI', + 'Roboto', + 'Helvetica Neue', + 'Arial', + 'Noto Sans', + 'sans-serif', + 'Apple Color Emoji', + 'Segoe UI Emoji', + 'Segoe UI Symbol', + 'Noto Color Emoji' + ], + 'sans': [ + 'Inter', + 'ui-sans-serif', + 'system-ui', + '-apple-system', + 'system-ui', + 'Segoe UI', + 'Roboto', + 'Helvetica Neue', + 'Arial', + 'Noto Sans', + 'sans-serif', + 'Apple Color Emoji', + 'Segoe UI Emoji', + 'Segoe UI Symbol', + 'Noto Color Emoji' + ] + } + } + } \ No newline at end of file