mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-10 09:42:18 +00:00

* add new autogen-studio renamed folder * remove old autogen-assistant files * formatting updates * add support for upsert/updates to agents and workflows * version bump, general fixes * support deleting db items * add support for summary method to flowmanager * formatting updates * update serverl urls * version bump * add support for updated metadata messages object to include sender information * formatting updates * update documentation and blog post * blog post update * add description field example to agent workflow spec * readme and blog update * Update website/blog/2023-12-01-AutoGenStudio/index.mdx Co-authored-by: Chi Wang <wang.chi@microsoft.com> * add fix to ensure working directory is cleared after each run * update version * minor updates * formatting updates --------- Co-authored-by: Chi Wang <wang.chi@microsoft.com>
37 lines
970 B
JavaScript
37 lines
970 B
JavaScript
module.exports = {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
darkMode: "class",
|
|
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)",
|
|
},
|
|
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")],
|
|
};
|