Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/agor-ui/src/components/BrandLogo/BrandLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const BrandLogo: React.FC<BrandLogoProps> = ({ level = 3, style, classNam
margin: 0,
fontSize: LEVEL_SIZES[level],
lineHeight: 1.35,
background: 'linear-gradient(90deg, #2e9a92 0%, #7fe8df 50%, #a8f5ed 100%)',
background: 'linear-gradient(90deg, #339699 0%, #7fe8df 50%, #a8f5ed 100%)',
WebkitBackgroundClip: 'text',
WebkitTextFillColor: 'transparent',
backgroundClip: 'text',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const EmbeddedTerminal: React.FC<EmbeddedTerminalProps> = ({
theme: {
background: '#141414',
foreground: '#ffffff',
cursor: '#2e9a92',
cursor: '#339699',
cursorAccent: '#141414',
},
});
Expand Down
4 changes: 2 additions & 2 deletions apps/agor-ui/src/components/TerminalModal/TerminalModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export const TerminalModal: React.FC<TerminalModalProps> = ({
// Ant Design dark theme colors
background: '#141414', // colorBgContainer
foreground: '#ffffff', // colorText
cursor: '#2e9a92', // Agor teal
cursor: '#339699', // Agor teal
cursorAccent: '#141414',

// ANSI colors matching Ant Design palette
Expand All @@ -178,7 +178,7 @@ export const TerminalModal: React.FC<TerminalModalProps> = ({
yellow: '#faad14', // colorWarning
blue: '#1890ff', // colorInfo
magenta: '#eb2f96',
cyan: '#2e9a92', // Agor teal (colorPrimary)
cyan: '#339699', // Agor teal (colorPrimary)
white: '#f0f0f0',

// Bright colors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ function getDefaultCustomTheme(): string {
return JSON.stringify(
{
token: {
colorPrimary: '#2e9a92',
colorPrimary: '#339699',
colorSuccess: '#52c41a',
colorWarning: '#faad14',
colorError: '#ff4d4f',
colorInfo: '#2e9a92',
colorLink: '#2e9a92',
colorInfo: '#339699',
colorLink: '#339699',
borderRadius: 8,
},
// Note: algorithm (dark/light) should be set via the theme switcher dropdown
Expand Down
6 changes: 3 additions & 3 deletions apps/agor-ui/src/contexts/ThemeContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ export const ThemeProvider: React.FC<{ children: React.ReactNode }> = ({ childre
const baseTheme: ThemeConfig = {
// CSS variables are enabled by default in antd v6
token: {
colorPrimary: '#2e9a92', // Agor teal
colorPrimary: '#339699', // Agor teal
colorSuccess: '#52c41a',
colorWarning: '#faad14',
colorError: '#ff4d4f',
colorInfo: '#2e9a92',
colorLink: '#2e9a92',
colorInfo: '#339699',
colorLink: '#339699',
borderRadius: 8,
// Use Inter font from Bunny Fonts CDN with system font fallbacks
fontFamily:
Expand Down
2 changes: 1 addition & 1 deletion apps/agor-ui/src/pages/MarketingScreenshotPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ export const MarketingScreenshotPage = () => {
theme={{
algorithm: theme.darkAlgorithm,
token: {
colorPrimary: '#14b8a6',
colorPrimary: '#339699',
borderRadius: 12,
fontFamily:
'Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
Expand Down
4 changes: 2 additions & 2 deletions apps/agor-ui/src/utils/particleConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ export const mellowParticleOptions = {
},
particles: {
color: {
value: '#2e9a92', // Agor teal brand color
value: '#339699', // Agor teal brand color
},
links: {
color: '#2e9a92',
color: '#339699',
distance: 150,
enable: true,
opacity: 0.2,
Expand Down
Loading