Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
589 B
23 lines
589 B
/** @type {import('tailwindcss').Config}*/
|
|
const config = {
|
|
content: [
|
|
"./src/**/*.{html,js,svelte,ts}",
|
|
"../../ng-app/src/**/*.{html,js,svelte,ts}",
|
|
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
|
|
],
|
|
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: { "50": "#eff6ff", "100": "#dbeafe", "200": "#bfdbfe", "300": "#93c5fd", "400": "#60a5fa", "500": "#3b82f6", "600": "#1E88E5", "700": "#4972A5", "800": "#1e40af", "900": "#1e3a8a" }
|
|
}
|
|
},
|
|
},
|
|
|
|
plugins: [
|
|
require('flowbite/plugin')
|
|
],
|
|
darkMode: 'class',
|
|
};
|
|
|
|
module.exports = config;
|
|
|