mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-23 08:52:56 +00:00

* add skeleton worflow manager * add test notebook * update test nb * add sample team spec * refactor requirements to agentchat and ext * add base provider to return agentchat agents from json spec * initial api refactor, update dbmanager * api refactor * refactor tests * ags api tutorial update * ui refactor * general refactor * minor refactor updates * backend api refaactor * ui refactor and update * implement v1 for streaming connection with ui updates * backend refactor * ui refactor * minor ui tweak * minor refactor and tweaks * general refactor * update tests * sync uv.lock with main * uv lock update
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
`./src/pages/**/*.{js,jsx,ts,tsx}`,
|
|
`./src/components/**/*.{js,jsx,ts,tsx}`,
|
|
],
|
|
theme: {
|
|
extend: {
|
|
typography: {
|
|
DEFAULT: {
|
|
css: {
|
|
maxWidth: "100ch", // add required value here
|
|
},
|
|
},
|
|
},
|
|
transitionProperty: {
|
|
height: "height",
|
|
spacing: "margin, padding",
|
|
},
|
|
backgroundColor: {
|
|
primary: "var(--color-bg-primary)",
|
|
secondary: "var(--color-bg-secondary)",
|
|
accent: "var(--color-bg-accent)",
|
|
light: "var(--color-bg-light)",
|
|
tertiary: "var(--color-bg-tertiary)",
|
|
},
|
|
textColor: {
|
|
accent: "var(--color-text-accent)",
|
|
primary: "var(--color-text-primary)",
|
|
secondary: "var(--color-text-secondary)",
|
|
},
|
|
borderColor: {
|
|
accent: "var(--color-border-accent)",
|
|
primary: "var(--color-border-primary)",
|
|
secondary: "var(--color-border-secondary)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|