2024-06-27 09:02:54 +00:00
|
|
|
import type { Config } from "tailwindcss";
|
|
|
|
|
2024-07-05 06:14:45 +00:00
|
|
|
const config = {
|
|
|
|
darkMode: ["class"],
|
2024-08-05 07:18:08 +00:00
|
|
|
content: ["./src/**/*.{ts,tsx}"],
|
2024-07-05 06:14:45 +00:00
|
|
|
prefix: "",
|
2024-06-27 09:02:54 +00:00
|
|
|
theme: {
|
2024-07-05 06:14:45 +00:00
|
|
|
container: {
|
|
|
|
center: true,
|
|
|
|
padding: "2rem",
|
|
|
|
screens: {
|
|
|
|
"2xl": "1400px",
|
|
|
|
},
|
|
|
|
},
|
2024-06-27 09:02:54 +00:00
|
|
|
extend: {
|
2024-07-26 22:59:44 +00:00
|
|
|
fontFamily: {
|
2024-08-05 07:18:08 +00:00
|
|
|
sans: ["var(--font-geist-sans)"],
|
|
|
|
mono: ["var(--font-geist-mono)"],
|
feat(platform): Agent Store V2 (#8874)
# 🌎 Overview
AutoGPT Store Version 2 expands on the Pre-Store by enhancing agent
discovery, providing richer content presentation, and introducing new
user engagement features. The focus is on creating a visually appealing
and interactive marketplace that allows users to explore and evaluate
agents through images, videos, and detailed descriptions.
### Vision
To create a visually compelling and interactive open-source marketplace
for autonomous AI agents, where users can easily discover, evaluate, and
interact with agents through media-rich listings, ratings, and version
history.
### Objectives
📊 Incorporate visuals (icons, images, videos) into agent listings.
⭐ Introduce a rating system and agent run count.
🔄 Provide version history and update logs from creators.
🔍 Improve user experience with advanced search and filtering features.
### Changes 🏗️
<!-- Concisely describe all of the changes made in this pull request:
-->
### Checklist 📋
#### For code changes:
- [ ] I have clearly listed my changes in the PR description
- [ ] I have made a test plan
- [ ] I have tested my changes according to the test plan:
<!-- Put your test plan here: -->
- [ ] ...
<details>
<summary>Example test plan</summary>
- [ ] Create from scratch and execute an agent with at least 3 blocks
- [ ] Import an agent from file upload, and confirm it executes
correctly
- [ ] Upload agent to marketplace
- [ ] Import an agent from marketplace and confirm it executes correctly
- [ ] Edit an agent from monitor, and confirm it executes correctly
</details>
#### For configuration changes:
- [ ] `.env.example` is updated or already compatible with my changes
- [ ] `docker-compose.yml` is updated or already compatible with my
changes
- [ ] I have included a list of my configuration changes in the PR
description (under **Changes**)
<details>
<summary>Examples of configuration changes</summary>
- Changing ports
- Adding new services that need to communicate with each other
- Secrets or environment variable changes
- New or infrastructure changes such as databases
</details>
---------
Co-authored-by: Bently <tomnoon9@gmail.com>
Co-authored-by: Aarushi <aarushik93@gmail.com>
2024-12-13 16:35:02 +00:00
|
|
|
// Include the custom font family
|
|
|
|
neue: ['"PP Neue Montreal TT"', "sans-serif"],
|
2025-02-19 22:07:03 +00:00
|
|
|
poppins: ["var(--font-poppins)"],
|
2025-01-08 09:44:35 +00:00
|
|
|
inter: ["var(--font-inter)"],
|
2024-07-26 22:59:44 +00:00
|
|
|
},
|
|
|
|
colors: {
|
2024-08-05 07:18:08 +00:00
|
|
|
border: "hsl(var(--border))",
|
|
|
|
input: "hsl(var(--input))",
|
|
|
|
ring: "hsl(var(--ring))",
|
|
|
|
background: "hsl(var(--background))",
|
|
|
|
foreground: "hsl(var(--foreground))",
|
2024-07-26 22:59:44 +00:00
|
|
|
primary: {
|
2024-08-05 07:18:08 +00:00
|
|
|
DEFAULT: "hsl(var(--primary))",
|
|
|
|
foreground: "hsl(var(--primary-foreground))",
|
2024-07-26 22:59:44 +00:00
|
|
|
},
|
|
|
|
secondary: {
|
2024-08-05 07:18:08 +00:00
|
|
|
DEFAULT: "hsl(var(--secondary))",
|
|
|
|
foreground: "hsl(var(--secondary-foreground))",
|
2024-07-26 22:59:44 +00:00
|
|
|
},
|
|
|
|
destructive: {
|
2024-08-05 07:18:08 +00:00
|
|
|
DEFAULT: "hsl(var(--destructive))",
|
|
|
|
foreground: "hsl(var(--destructive-foreground))",
|
2024-07-26 22:59:44 +00:00
|
|
|
},
|
|
|
|
muted: {
|
2024-08-05 07:18:08 +00:00
|
|
|
DEFAULT: "hsl(var(--muted))",
|
|
|
|
foreground: "hsl(var(--muted-foreground))",
|
2024-07-26 22:59:44 +00:00
|
|
|
},
|
|
|
|
accent: {
|
2024-08-05 07:18:08 +00:00
|
|
|
DEFAULT: "hsl(var(--accent))",
|
|
|
|
foreground: "hsl(var(--accent-foreground))",
|
2024-07-05 06:14:45 +00:00
|
|
|
},
|
2024-07-26 22:59:44 +00:00
|
|
|
popover: {
|
2024-08-05 07:18:08 +00:00
|
|
|
DEFAULT: "hsl(var(--popover))",
|
|
|
|
foreground: "hsl(var(--popover-foreground))",
|
2024-07-05 06:14:45 +00:00
|
|
|
},
|
2024-07-26 22:59:44 +00:00
|
|
|
card: {
|
2024-08-05 07:18:08 +00:00
|
|
|
DEFAULT: "hsl(var(--card))",
|
|
|
|
foreground: "hsl(var(--card-foreground))",
|
|
|
|
},
|
feat(platform): Agent Store V2 (#8874)
# 🌎 Overview
AutoGPT Store Version 2 expands on the Pre-Store by enhancing agent
discovery, providing richer content presentation, and introducing new
user engagement features. The focus is on creating a visually appealing
and interactive marketplace that allows users to explore and evaluate
agents through images, videos, and detailed descriptions.
### Vision
To create a visually compelling and interactive open-source marketplace
for autonomous AI agents, where users can easily discover, evaluate, and
interact with agents through media-rich listings, ratings, and version
history.
### Objectives
📊 Incorporate visuals (icons, images, videos) into agent listings.
⭐ Introduce a rating system and agent run count.
🔄 Provide version history and update logs from creators.
🔍 Improve user experience with advanced search and filtering features.
### Changes 🏗️
<!-- Concisely describe all of the changes made in this pull request:
-->
### Checklist 📋
#### For code changes:
- [ ] I have clearly listed my changes in the PR description
- [ ] I have made a test plan
- [ ] I have tested my changes according to the test plan:
<!-- Put your test plan here: -->
- [ ] ...
<details>
<summary>Example test plan</summary>
- [ ] Create from scratch and execute an agent with at least 3 blocks
- [ ] Import an agent from file upload, and confirm it executes
correctly
- [ ] Upload agent to marketplace
- [ ] Import an agent from marketplace and confirm it executes correctly
- [ ] Edit an agent from monitor, and confirm it executes correctly
</details>
#### For configuration changes:
- [ ] `.env.example` is updated or already compatible with my changes
- [ ] `docker-compose.yml` is updated or already compatible with my
changes
- [ ] I have included a list of my configuration changes in the PR
description (under **Changes**)
<details>
<summary>Examples of configuration changes</summary>
- Changing ports
- Adding new services that need to communicate with each other
- Secrets or environment variable changes
- New or infrastructure changes such as databases
</details>
---------
Co-authored-by: Bently <tomnoon9@gmail.com>
Co-authored-by: Aarushi <aarushik93@gmail.com>
2024-12-13 16:35:02 +00:00
|
|
|
// Extend the color palette with custom colors
|
|
|
|
customGray: {
|
|
|
|
100: "#d9d9d9",
|
|
|
|
200: "#a8a8a8",
|
|
|
|
300: "#878787",
|
|
|
|
400: "#646464",
|
|
|
|
500: "#474747",
|
|
|
|
600: "#282828",
|
|
|
|
700: "#272727",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
spacing: {
|
|
|
|
// Tailwind spacing + custom sizes
|
|
|
|
0: "0rem",
|
|
|
|
0.5: "0.125rem",
|
|
|
|
1: "0.25rem",
|
|
|
|
1.5: "0.375rem",
|
|
|
|
2: "0.5rem",
|
|
|
|
2.5: "0.625rem",
|
|
|
|
3: "0.75rem",
|
|
|
|
3.5: "0.875rem",
|
|
|
|
4: "1rem",
|
|
|
|
5: "1.25rem",
|
|
|
|
6: "1.5rem",
|
|
|
|
7: "1.75rem",
|
|
|
|
7.5: "1.875rem",
|
|
|
|
8: "2rem",
|
|
|
|
8.5: "2.125rem",
|
|
|
|
9: "2.25rem",
|
|
|
|
10: "2.5rem",
|
|
|
|
11: "2.75rem",
|
|
|
|
12: "3rem",
|
|
|
|
14: "3.5rem",
|
|
|
|
16: "4rem",
|
|
|
|
18: "4.5rem",
|
|
|
|
20: "5rem",
|
|
|
|
24: "6rem",
|
|
|
|
28: "7rem",
|
|
|
|
32: "8rem",
|
|
|
|
36: "9rem",
|
|
|
|
40: "10rem",
|
|
|
|
44: "11rem",
|
|
|
|
48: "12rem",
|
|
|
|
52: "13rem",
|
|
|
|
56: "14rem",
|
|
|
|
60: "15rem",
|
|
|
|
64: "16rem",
|
2025-02-19 22:07:03 +00:00
|
|
|
68: "17rem",
|
|
|
|
70: "17.5rem",
|
|
|
|
71: "17.75rem",
|
feat(platform): Agent Store V2 (#8874)
# 🌎 Overview
AutoGPT Store Version 2 expands on the Pre-Store by enhancing agent
discovery, providing richer content presentation, and introducing new
user engagement features. The focus is on creating a visually appealing
and interactive marketplace that allows users to explore and evaluate
agents through images, videos, and detailed descriptions.
### Vision
To create a visually compelling and interactive open-source marketplace
for autonomous AI agents, where users can easily discover, evaluate, and
interact with agents through media-rich listings, ratings, and version
history.
### Objectives
📊 Incorporate visuals (icons, images, videos) into agent listings.
⭐ Introduce a rating system and agent run count.
🔄 Provide version history and update logs from creators.
🔍 Improve user experience with advanced search and filtering features.
### Changes 🏗️
<!-- Concisely describe all of the changes made in this pull request:
-->
### Checklist 📋
#### For code changes:
- [ ] I have clearly listed my changes in the PR description
- [ ] I have made a test plan
- [ ] I have tested my changes according to the test plan:
<!-- Put your test plan here: -->
- [ ] ...
<details>
<summary>Example test plan</summary>
- [ ] Create from scratch and execute an agent with at least 3 blocks
- [ ] Import an agent from file upload, and confirm it executes
correctly
- [ ] Upload agent to marketplace
- [ ] Import an agent from marketplace and confirm it executes correctly
- [ ] Edit an agent from monitor, and confirm it executes correctly
</details>
#### For configuration changes:
- [ ] `.env.example` is updated or already compatible with my changes
- [ ] `docker-compose.yml` is updated or already compatible with my
changes
- [ ] I have included a list of my configuration changes in the PR
description (under **Changes**)
<details>
<summary>Examples of configuration changes</summary>
- Changing ports
- Adding new services that need to communicate with each other
- Secrets or environment variable changes
- New or infrastructure changes such as databases
</details>
---------
Co-authored-by: Bently <tomnoon9@gmail.com>
Co-authored-by: Aarushi <aarushik93@gmail.com>
2024-12-13 16:35:02 +00:00
|
|
|
72: "18rem",
|
2025-02-19 22:07:03 +00:00
|
|
|
76: "19rem",
|
feat(platform): Agent Store V2 (#8874)
# 🌎 Overview
AutoGPT Store Version 2 expands on the Pre-Store by enhancing agent
discovery, providing richer content presentation, and introducing new
user engagement features. The focus is on creating a visually appealing
and interactive marketplace that allows users to explore and evaluate
agents through images, videos, and detailed descriptions.
### Vision
To create a visually compelling and interactive open-source marketplace
for autonomous AI agents, where users can easily discover, evaluate, and
interact with agents through media-rich listings, ratings, and version
history.
### Objectives
📊 Incorporate visuals (icons, images, videos) into agent listings.
⭐ Introduce a rating system and agent run count.
🔄 Provide version history and update logs from creators.
🔍 Improve user experience with advanced search and filtering features.
### Changes 🏗️
<!-- Concisely describe all of the changes made in this pull request:
-->
### Checklist 📋
#### For code changes:
- [ ] I have clearly listed my changes in the PR description
- [ ] I have made a test plan
- [ ] I have tested my changes according to the test plan:
<!-- Put your test plan here: -->
- [ ] ...
<details>
<summary>Example test plan</summary>
- [ ] Create from scratch and execute an agent with at least 3 blocks
- [ ] Import an agent from file upload, and confirm it executes
correctly
- [ ] Upload agent to marketplace
- [ ] Import an agent from marketplace and confirm it executes correctly
- [ ] Edit an agent from monitor, and confirm it executes correctly
</details>
#### For configuration changes:
- [ ] `.env.example` is updated or already compatible with my changes
- [ ] `docker-compose.yml` is updated or already compatible with my
changes
- [ ] I have included a list of my configuration changes in the PR
description (under **Changes**)
<details>
<summary>Examples of configuration changes</summary>
- Changing ports
- Adding new services that need to communicate with each other
- Secrets or environment variable changes
- New or infrastructure changes such as databases
</details>
---------
Co-authored-by: Bently <tomnoon9@gmail.com>
Co-authored-by: Aarushi <aarushik93@gmail.com>
2024-12-13 16:35:02 +00:00
|
|
|
80: "20rem",
|
|
|
|
96: "24rem",
|
2024-07-05 06:14:45 +00:00
|
|
|
},
|
2024-07-26 22:59:44 +00:00
|
|
|
borderRadius: {
|
2024-08-05 07:18:08 +00:00
|
|
|
lg: "var(--radius)",
|
|
|
|
md: "calc(var(--radius) - 2px)",
|
|
|
|
sm: "calc(var(--radius) - 4px)",
|
feat(platform): Agent Store V2 (#8874)
# 🌎 Overview
AutoGPT Store Version 2 expands on the Pre-Store by enhancing agent
discovery, providing richer content presentation, and introducing new
user engagement features. The focus is on creating a visually appealing
and interactive marketplace that allows users to explore and evaluate
agents through images, videos, and detailed descriptions.
### Vision
To create a visually compelling and interactive open-source marketplace
for autonomous AI agents, where users can easily discover, evaluate, and
interact with agents through media-rich listings, ratings, and version
history.
### Objectives
📊 Incorporate visuals (icons, images, videos) into agent listings.
⭐ Introduce a rating system and agent run count.
🔄 Provide version history and update logs from creators.
🔍 Improve user experience with advanced search and filtering features.
### Changes 🏗️
<!-- Concisely describe all of the changes made in this pull request:
-->
### Checklist 📋
#### For code changes:
- [ ] I have clearly listed my changes in the PR description
- [ ] I have made a test plan
- [ ] I have tested my changes according to the test plan:
<!-- Put your test plan here: -->
- [ ] ...
<details>
<summary>Example test plan</summary>
- [ ] Create from scratch and execute an agent with at least 3 blocks
- [ ] Import an agent from file upload, and confirm it executes
correctly
- [ ] Upload agent to marketplace
- [ ] Import an agent from marketplace and confirm it executes correctly
- [ ] Edit an agent from monitor, and confirm it executes correctly
</details>
#### For configuration changes:
- [ ] `.env.example` is updated or already compatible with my changes
- [ ] `docker-compose.yml` is updated or already compatible with my
changes
- [ ] I have included a list of my configuration changes in the PR
description (under **Changes**)
<details>
<summary>Examples of configuration changes</summary>
- Changing ports
- Adding new services that need to communicate with each other
- Secrets or environment variable changes
- New or infrastructure changes such as databases
</details>
---------
Co-authored-by: Bently <tomnoon9@gmail.com>
Co-authored-by: Aarushi <aarushik93@gmail.com>
2024-12-13 16:35:02 +00:00
|
|
|
// Add a full radius for pill-shaped buttons
|
|
|
|
full: "9999px",
|
2024-06-27 09:02:54 +00:00
|
|
|
},
|
2024-07-26 22:59:44 +00:00
|
|
|
keyframes: {
|
2024-08-05 07:18:08 +00:00
|
|
|
"accordion-down": {
|
|
|
|
from: { height: "0" },
|
|
|
|
to: { height: "var(--radix-accordion-content-height)" },
|
|
|
|
},
|
|
|
|
"accordion-up": {
|
|
|
|
from: { height: "var(--radix-accordion-content-height)" },
|
|
|
|
to: { height: "0" },
|
2024-07-26 22:59:44 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
animation: {
|
2024-08-05 07:18:08 +00:00
|
|
|
"accordion-down": "accordion-down 0.2s ease-out",
|
|
|
|
"accordion-up": "accordion-up 0.2s ease-out",
|
|
|
|
},
|
|
|
|
},
|
2024-06-27 09:02:54 +00:00
|
|
|
},
|
2024-07-05 06:14:45 +00:00
|
|
|
plugins: [require("tailwindcss-animate")],
|
|
|
|
} satisfies Config;
|
|
|
|
|
2024-06-27 09:02:54 +00:00
|
|
|
export default config;
|