Signed-off-by: Xinyao Wang <xinyao.wang@intel.com> Signed-off-by: chensuyue <suyue.chen@intel.com>
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
// Copyright (c) 2024 Intel Corporation
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
const config = {
|
|
content: ["./src/**/*.{html,js,svelte,ts}", "./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}"],
|
|
|
|
plugins: [require("flowbite/plugin")],
|
|
|
|
darkMode: "class",
|
|
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// flowbite-svelte
|
|
primary: {
|
|
50: "#f2f8ff",
|
|
100: "#eef5ff",
|
|
200: "#deecff",
|
|
300: "#cce2ff",
|
|
400: "#add0ff",
|
|
500: "#5da2fe",
|
|
600: "#2f81ef",
|
|
700: "#2780eb",
|
|
800: "#226fcc",
|
|
900: "#1b5aa5",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|