@mazees/mark 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +29 -0
- package/README.md +209 -0
- package/bin/mark.js +27 -0
- package/out/renderer/assets/icon-DHo2CYph.svg +1 -0
- package/out/renderer/assets/index-G2fADWO-.js +4768 -0
- package/out/renderer/assets/index-f3mVse3c.css +1 -0
- package/out/renderer/assets/music-cover-CG4vi3kZ.png +0 -0
- package/out/renderer/assets/poppins-devanagari-400-normal-CJDn6rn8.woff2 +0 -0
- package/out/renderer/assets/poppins-devanagari-400-normal-CqVvlrh5.woff +0 -0
- package/out/renderer/assets/poppins-devanagari-500-normal-BIdkeU1p.woff2 +0 -0
- package/out/renderer/assets/poppins-devanagari-500-normal-DMPDjHtT.woff +0 -0
- package/out/renderer/assets/poppins-devanagari-600-normal-ClASKHrr.woff +0 -0
- package/out/renderer/assets/poppins-devanagari-600-normal-STEjXBNN.woff2 +0 -0
- package/out/renderer/assets/poppins-devanagari-700-normal-O-jipLrW.woff2 +0 -0
- package/out/renderer/assets/poppins-devanagari-700-normal-fHs-vx92.woff +0 -0
- package/out/renderer/assets/poppins-latin-400-normal-BOb3E3N0.woff +0 -0
- package/out/renderer/assets/poppins-latin-400-normal-cpxAROuN.woff2 +0 -0
- package/out/renderer/assets/poppins-latin-500-normal-C8OXljZJ.woff2 +0 -0
- package/out/renderer/assets/poppins-latin-500-normal-DGXqpDMm.woff +0 -0
- package/out/renderer/assets/poppins-latin-600-normal-BJdTmd5m.woff +0 -0
- package/out/renderer/assets/poppins-latin-600-normal-zEkxB9Mr.woff2 +0 -0
- package/out/renderer/assets/poppins-latin-700-normal-BVuQR_eA.woff +0 -0
- package/out/renderer/assets/poppins-latin-700-normal-Qrb0O0WB.woff2 +0 -0
- package/out/renderer/assets/poppins-latin-ext-400-normal-DaBSavcJ.woff +0 -0
- package/out/renderer/assets/poppins-latin-ext-400-normal-by3JarPu.woff2 +0 -0
- package/out/renderer/assets/poppins-latin-ext-500-normal-CK-6C4Hw.woff2 +0 -0
- package/out/renderer/assets/poppins-latin-ext-500-normal-CgAe2rWW.woff +0 -0
- package/out/renderer/assets/poppins-latin-ext-600-normal-CAhIAdZj.woff2 +0 -0
- package/out/renderer/assets/poppins-latin-ext-600-normal-Df5ffKXP.woff +0 -0
- package/out/renderer/assets/poppins-latin-ext-700-normal-DctTR6Tg.woff +0 -0
- package/out/renderer/assets/poppins-latin-ext-700-normal-cby-RkWa.woff2 +0 -0
- package/out/renderer/favicon.ico +0 -0
- package/out/renderer/icon-256.png +0 -0
- package/out/renderer/icon.svg +1 -0
- package/out/renderer/index.html +25 -0
- package/out/renderer/manifest.json +25 -0
- package/out/renderer/robot-simulator.html +1640 -0
- package/package.json +106 -0
- package/src/cli/index.js +332 -0
- package/src/cli/monitor.js +413 -0
- package/src/cli/theme.js +347 -0
- package/src/launcher/MarkTray.cs +227 -0
- package/src/main/browser-agent.js +1132 -0
- package/src/main/git-service.js +90 -0
- package/src/main/google/google-calendar.js +69 -0
- package/src/main/google/google-drive.js +263 -0
- package/src/main/google/google-gmail.js +131 -0
- package/src/main/google/google-service.js +241 -0
- package/src/main/node-tools.js +23 -0
- package/src/main/pc-agent-scripts/mouse-locker.ps1 +76 -0
- package/src/main/pc-agent-scripts/ocr-region.ps1 +185 -0
- package/src/main/pc-agent-scripts/pc-daemon.ps1 +726 -0
- package/src/main/pc-agent-scripts/pc-overlay.ps1 +253 -0
- package/src/main/pc-agent-scripts/pick-folder.ps1 +33 -0
- package/src/main/pc-agent-scripts/read-ui.ps1 +181 -0
- package/src/main/pc-agent-scripts/take-screenshot.ps1 +24 -0
- package/src/main/pc-agent-scripts/win-action.ps1 +380 -0
- package/src/main/plugins/plugin-loader.js +306 -0
- package/src/main/skills/skill-manager.js +265 -0
- package/src/main/syntax-validator.js +455 -0
- package/src/main/task-daemon.js +117 -0
- package/src/main/telegram/telegram-service.js +835 -0
- package/src/main/tools/browser-tools.js +516 -0
- package/src/main/tools/file-tools.js +1126 -0
- package/src/main/tools/git-tools.js +79 -0
- package/src/main/tools/google-tools.js +566 -0
- package/src/main/tools/index.js +36 -0
- package/src/main/tools/media-tools.js +42 -0
- package/src/main/tools/system-tools.js +295 -0
- package/src/main/tools/task-tools.js +73 -0
- package/src/main/tools/telegram-tools.js +101 -0
- package/src/renderer/index.html +24 -0
- package/src/renderer/public/favicon.ico +0 -0
- package/src/renderer/public/icon-256.png +0 -0
- package/src/renderer/public/icon.svg +1 -0
- package/src/renderer/public/manifest.json +25 -0
- package/src/renderer/public/robot-simulator.html +1640 -0
- package/src/renderer/src/App.jsx +304 -0
- package/src/renderer/src/api/ai/awareness.js +294 -0
- package/src/renderer/src/api/ai/chatSummarizer.js +79 -0
- package/src/renderer/src/api/ai/contextCompactor.js +129 -0
- package/src/renderer/src/api/ai/contextManager.js +1130 -0
- package/src/renderer/src/api/ai/core.js +167 -0
- package/src/renderer/src/api/ai/index.js +4 -0
- package/src/renderer/src/api/ai/memoryGroomer.js +101 -0
- package/src/renderer/src/api/ai/persona.js +115 -0
- package/src/renderer/src/api/ai/planning.js +317 -0
- package/src/renderer/src/api/ai/relationship.js +177 -0
- package/src/renderer/src/api/ai/skillSynthesizer.js +168 -0
- package/src/renderer/src/api/ai/tools.js +167 -0
- package/src/renderer/src/api/ai/utils.js +359 -0
- package/src/renderer/src/api/db.js +1013 -0
- package/src/renderer/src/api/oramaStore.js +592 -0
- package/src/renderer/src/api/ragPipeline.js +87 -0
- package/src/renderer/src/api/subagent/subagentExecutor.js +780 -0
- package/src/renderer/src/api/subagent/subagentPrompt.js +44 -0
- package/src/renderer/src/api/subagent/subagentStore.js +173 -0
- package/src/renderer/src/api/taskExecutor.js +18 -0
- package/src/renderer/src/api/taskStore.js +315 -0
- package/src/renderer/src/api/tools/core-tools.js +707 -0
- package/src/renderer/src/api/tools/index.js +151 -0
- package/src/renderer/src/api/turnPairMigrator.js +200 -0
- package/src/renderer/src/api/vectorMemory.js +136 -0
- package/src/renderer/src/api/wakeWord.js +101 -0
- package/src/renderer/src/api/web-bridge.js +885 -0
- package/src/renderer/src/api/webSpeech.js +178 -0
- package/src/renderer/src/api/workspaceRag.js +76 -0
- package/src/renderer/src/assets/electron.svg +10 -0
- package/src/renderer/src/assets/icon.svg +1 -0
- package/src/renderer/src/assets/main.css +589 -0
- package/src/renderer/src/assets/music-cover.png +0 -0
- package/src/renderer/src/assets/wavy-lines.svg +25 -0
- package/src/renderer/src/components/Chat/ApprovalBubble.jsx +127 -0
- package/src/renderer/src/components/Chat/CodeBlock.jsx +83 -0
- package/src/renderer/src/components/Chat/DurableTaskBubble.jsx +455 -0
- package/src/renderer/src/components/Chat/FileDiffModal.jsx +328 -0
- package/src/renderer/src/components/Chat/GeminiWidgets.jsx +82 -0
- package/src/renderer/src/components/Chat/MemoryFooterBubble.jsx +34 -0
- package/src/renderer/src/components/Chat/MessageBubble.jsx +459 -0
- package/src/renderer/src/components/Chat/PluginExecutionBubble.jsx +41 -0
- package/src/renderer/src/components/Chat/ThinkingBubble.jsx +316 -0
- package/src/renderer/src/components/Chat/YoutubeSearchBubble.jsx +43 -0
- package/src/renderer/src/components/Chat/YoutubeSummaryBubble.jsx +40 -0
- package/src/renderer/src/components/Chat/index.js +11 -0
- package/src/renderer/src/components/ChatList.jsx +434 -0
- package/src/renderer/src/components/GlobalCameraManager.jsx +67 -0
- package/src/renderer/src/components/Versions.jsx +15 -0
- package/src/renderer/src/components/YoutubeMusicPlayer.jsx +375 -0
- package/src/renderer/src/components/camera/CameraPreview.jsx +236 -0
- package/src/renderer/src/components/config/AiEngineSection.jsx +363 -0
- package/src/renderer/src/components/config/CameraSection.jsx +100 -0
- package/src/renderer/src/components/config/PermissionsSection.jsx +130 -0
- package/src/renderer/src/components/config/ShortcutSection.jsx +102 -0
- package/src/renderer/src/components/config/VoiceSection.jsx +110 -0
- package/src/renderer/src/components/config/index.js +5 -0
- package/src/renderer/src/components/core/Avatar.jsx +2197 -0
- package/src/renderer/src/components/core/ConfirmModal.jsx +80 -0
- package/src/renderer/src/components/core/DraggableHoloCard.jsx +125 -0
- package/src/renderer/src/components/core/FloatingMenu.jsx +272 -0
- package/src/renderer/src/components/core/HoloCard.jsx +64 -0
- package/src/renderer/src/components/core/InputBar.jsx +1346 -0
- package/src/renderer/src/components/core/ProcessPanel.jsx +216 -0
- package/src/renderer/src/components/core/ResponseArea.jsx +149 -0
- package/src/renderer/src/components/core/StatusIndicator.jsx +59 -0
- package/src/renderer/src/components/core/ThoughtNeuralFlow.jsx +168 -0
- package/src/renderer/src/components/core/ToolClustersDeck.jsx +210 -0
- package/src/renderer/src/components/core/native-skills.js +43 -0
- package/src/renderer/src/components/neural-core/EmotionalCortexLobe.jsx +359 -0
- package/src/renderer/src/components/neural-core/NodeDissectionModal.jsx +57 -0
- package/src/renderer/src/components/neural-core/ProceduralMatrixLobe.jsx +193 -0
- package/src/renderer/src/components/neural-core/ProceduralSkillModal.jsx +53 -0
- package/src/renderer/src/components/neural-core/ResetAiModal.jsx +198 -0
- package/src/renderer/src/components/neural-core/SynapticMemoryLobe.jsx +204 -0
- package/src/renderer/src/components/neural-core/traitMeta.js +102 -0
- package/src/renderer/src/components/subagent/AgentChatFeed.jsx +603 -0
- package/src/renderer/src/components/subagent/AgentInspector.jsx +224 -0
- package/src/renderer/src/components/subagent/AgentSidebar.jsx +216 -0
- package/src/renderer/src/components/subagent/SubagentIntercom.jsx +572 -0
- package/src/renderer/src/components/subagent/SubagentTopologyMap.jsx +423 -0
- package/src/renderer/src/contexts/ApprovalContext.jsx +425 -0
- package/src/renderer/src/contexts/ChatContext.jsx +61 -0
- package/src/renderer/src/contexts/YoutubeMusicContext.jsx +333 -0
- package/src/renderer/src/data/faqData.js +202 -0
- package/src/renderer/src/hooks/agent/executeAgentTool.js +895 -0
- package/src/renderer/src/hooks/agent/index.js +4 -0
- package/src/renderer/src/hooks/agent/useMarkMusic.js +75 -0
- package/src/renderer/src/hooks/agent/useMarkPlan.js +2739 -0
- package/src/renderer/src/hooks/agent/useMarkState.js +173 -0
- package/src/renderer/src/hooks/agent/useMarkYoutube.js +82 -0
- package/src/renderer/src/hooks/agent/useRelationalGrowth.js +201 -0
- package/src/renderer/src/hooks/telegram/useTelegramBot.js +63 -0
- package/src/renderer/src/hooks/useAwareness.js +289 -0
- package/src/renderer/src/hooks/useChatArchiver.js +52 -0
- package/src/renderer/src/hooks/useConfirm.jsx +68 -0
- package/src/renderer/src/hooks/useMarkAgent.js +454 -0
- package/src/renderer/src/hooks/useMemoryGroomer.js +152 -0
- package/src/renderer/src/hooks/useVAD.js +511 -0
- package/src/renderer/src/hooks/useWebSpeechWakeWord.js +122 -0
- package/src/renderer/src/main.jsx +12 -0
- package/src/renderer/src/pages/ChatStudio.jsx +922 -0
- package/src/renderer/src/pages/Configuration.jsx +360 -0
- package/src/renderer/src/pages/GoogleWorkspace.jsx +293 -0
- package/src/renderer/src/pages/Guidebook.jsx +917 -0
- package/src/renderer/src/pages/Knowledge.jsx +241 -0
- package/src/renderer/src/pages/MarkHome.jsx +491 -0
- package/src/renderer/src/pages/NeuralCore.jsx +786 -0
- package/src/renderer/src/pages/Plugins.jsx +630 -0
- package/src/renderer/src/pages/SkillEditor.jsx +380 -0
- package/src/renderer/src/pages/Skills.jsx +219 -0
- package/src/renderer/src/pages/Subagents.jsx +342 -0
- package/src/renderer/src/pages/TelegramBot.jsx +343 -0
- package/src/renderer/src/utils/chatContentParser.js +203 -0
- package/src/renderer/src/utils/toolClusters.js +201 -0
- package/src/server/bin/sha3_wasm_bg.wasm +0 -0
- package/src/server/config-manager.js +57 -0
- package/src/server/index.js +195 -0
- package/src/server/launcher.js +87 -0
- package/src/server/memory/db-store.js +758 -0
- package/src/server/memory/orama-store.js +177 -0
- package/src/server/memory/vector-engine.js +109 -0
- package/src/server/routes/ai.routes.js +280 -0
- package/src/server/routes/awareness.routes.js +62 -0
- package/src/server/routes/chat.routes.js +61 -0
- package/src/server/routes/config.routes.js +41 -0
- package/src/server/routes/index.js +35 -0
- package/src/server/routes/integrations.routes.js +116 -0
- package/src/server/routes/memory.routes.js +256 -0
- package/src/server/routes/plugins.routes.js +72 -0
- package/src/server/routes/skills.routes.js +139 -0
- package/src/server/routes/subagents.routes.js +70 -0
- package/src/server/routes/tasks.routes.js +175 -0
- package/src/server/routes/workspace.routes.js +127 -0
- package/src/server/services/ai/ai-utils.js +161 -0
- package/src/server/services/ai/openai-provider.js +757 -0
- package/src/server/services/ai/web-provider.js +729 -0
- package/src/server/services/ai-bridge.js +46 -0
- package/src/server/services/deepseek-web.js +956 -0
- package/src/server/services/gemini-web.js +170 -0
- package/src/server/services/notification-service.js +91 -0
- package/src/server/services/updater.js +125 -0
- package/src/server/tools/awareness-tracker.js +292 -0
- package/src/server/tools/group-tools.js +1164 -0
- package/src/server/tools/media-tools.js +244 -0
- package/src/server/tools/pc-agent.js +327 -0
- package/src/server/tools/screen-service.js +51 -0
- package/src/server/ws-hub.js +168 -0
- package/src/shared/parsers/mark-tag-parser.js +275 -0
|
@@ -0,0 +1,589 @@
|
|
|
1
|
+
@import '@fontsource/poppins/400.css';
|
|
2
|
+
@import '@fontsource/poppins/500.css';
|
|
3
|
+
@import '@fontsource/poppins/600.css';
|
|
4
|
+
@import '@fontsource/poppins/700.css';
|
|
5
|
+
@import 'tailwindcss';
|
|
6
|
+
@plugin "daisyui" {
|
|
7
|
+
themes: forest;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@plugin "daisyui/theme" {
|
|
11
|
+
name: 'forest';
|
|
12
|
+
default: false;
|
|
13
|
+
prefersdark: false;
|
|
14
|
+
color-scheme: 'dark';
|
|
15
|
+
--color-base-100: oklch(20.84% 0.008 17.911);
|
|
16
|
+
--color-base-200: oklch(18.522% 0.007 17.911);
|
|
17
|
+
--color-base-300: oklch(16.203% 0.007 17.911);
|
|
18
|
+
--color-base-content: #cac9c9;
|
|
19
|
+
--color-primary: #1fb854;
|
|
20
|
+
--color-primary-content: oklch(0% 0 0);
|
|
21
|
+
--color-secondary: oklch(69.776% 0.135 168.327);
|
|
22
|
+
--color-secondary-content: oklch(13.955% 0.027 168.327);
|
|
23
|
+
--color-accent: oklch(70.628% 0.119 185.713);
|
|
24
|
+
--color-accent-content: oklch(14.125% 0.023 185.713);
|
|
25
|
+
--color-neutral: #19362d;
|
|
26
|
+
--color-neutral-content: oklch(86.139% 0.007 171.364);
|
|
27
|
+
--color-info: oklch(72.06% 0.191 231.6);
|
|
28
|
+
--color-info-content: oklch(0% 0 0);
|
|
29
|
+
--color-success: oklch(64.8% 0.15 160);
|
|
30
|
+
--color-success-content: oklch(0% 0 0);
|
|
31
|
+
--color-warning: oklch(84.71% 0.199 83.87);
|
|
32
|
+
--color-warning-content: oklch(0% 0 0);
|
|
33
|
+
--color-error: oklch(71.76% 0.221 22.18);
|
|
34
|
+
--color-error-content: oklch(0% 0 0);
|
|
35
|
+
--radius-selector: 0.25rem;
|
|
36
|
+
--radius-field: 0.25rem;
|
|
37
|
+
--radius-box: 0.25rem;
|
|
38
|
+
--size-selector: 0.25rem;
|
|
39
|
+
--size-field: 0.25rem;
|
|
40
|
+
--border: 1px;
|
|
41
|
+
--depth: 0;
|
|
42
|
+
--noise: 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@theme {
|
|
46
|
+
--font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
|
|
47
|
+
--font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
html,
|
|
51
|
+
body,
|
|
52
|
+
#root {
|
|
53
|
+
background-color: #0f1715;
|
|
54
|
+
color: #cac9c9;
|
|
55
|
+
min-height: 100vh;
|
|
56
|
+
margin: 0;
|
|
57
|
+
padding: 0;
|
|
58
|
+
font-family: var(--font-sans);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
button {
|
|
62
|
+
cursor: pointer;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
html {
|
|
66
|
+
font-size: 14px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
* {
|
|
70
|
+
font-family: var(--font-sans);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
html,
|
|
74
|
+
body,
|
|
75
|
+
#root {
|
|
76
|
+
background-color: transparent !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
80
|
+
.no-scrollbar::-webkit-scrollbar {
|
|
81
|
+
display: none;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Hide scrollbar for IE, Edge and Firefox */
|
|
85
|
+
.no-scrollbar {
|
|
86
|
+
-ms-overflow-style: none; /* IE and Edge */
|
|
87
|
+
scrollbar-width: none; /* Firefox */
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* Custom Markdown Styles */
|
|
91
|
+
.custom-markdown {
|
|
92
|
+
color: inherit;
|
|
93
|
+
line-height: 1.6;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.custom-markdown h1 {
|
|
97
|
+
@apply text-2xl font-bold mb-4 mt-2;
|
|
98
|
+
}
|
|
99
|
+
.custom-markdown h2 {
|
|
100
|
+
@apply text-xl font-bold mb-3 mt-2;
|
|
101
|
+
}
|
|
102
|
+
.custom-markdown h3 {
|
|
103
|
+
@apply text-lg font-bold mb-2 mt-2;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.custom-markdown p {
|
|
107
|
+
@apply mb-3;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.custom-markdown ul {
|
|
111
|
+
list-style-type: disc !important;
|
|
112
|
+
margin-left: 1.5rem !important;
|
|
113
|
+
margin-bottom: 1rem !important;
|
|
114
|
+
display: block !important;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.custom-markdown ol {
|
|
118
|
+
list-style-type: decimal !important;
|
|
119
|
+
margin-left: 1.5rem !important;
|
|
120
|
+
margin-bottom: 1rem !important;
|
|
121
|
+
display: block !important;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.custom-markdown li {
|
|
125
|
+
display: list-item !important;
|
|
126
|
+
margin-bottom: 0.25rem !important;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.custom-markdown code {
|
|
130
|
+
@apply bg-base-300 px-1.5 py-0.5 rounded text-primary font-mono text-sm;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.custom-markdown strong {
|
|
134
|
+
@apply font-bold text-primary;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.custom-markdown blockquote {
|
|
138
|
+
@apply border-l-4 border-primary pl-4 italic my-4 opacity-80;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.custom-markdown a {
|
|
142
|
+
@apply text-primary underline hover:opacity-80 cursor-pointer;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.custom-markdown table {
|
|
146
|
+
@apply table table-sm w-full bg-base-200/50 rounded-xl my-4 overflow-hidden border border-base-300;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.custom-markdown th {
|
|
150
|
+
@apply bg-base-300 text-left font-bold;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.custom-markdown td,
|
|
154
|
+
.custom-markdown th {
|
|
155
|
+
@apply border-b border-base-300 px-4 py-2;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/* Ultra Modern Driver.js Theme matching DaisyUI Forest */
|
|
159
|
+
.driver-popover {
|
|
160
|
+
@apply border border-white/10 rounded-2xl p-6;
|
|
161
|
+
background-color: #2a303c !important; /* Kontras dari hitam */
|
|
162
|
+
color: #ffffff !important;
|
|
163
|
+
max-width: 320px !important;
|
|
164
|
+
min-width: 300px !important;
|
|
165
|
+
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7) !important;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.driver-popover-title {
|
|
169
|
+
font-size: 1.125rem !important;
|
|
170
|
+
font-weight: 700 !important;
|
|
171
|
+
color: #ffffff !important;
|
|
172
|
+
margin-bottom: 0.5rem !important;
|
|
173
|
+
font-family: 'Poppins', sans-serif !important;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.driver-popover-description {
|
|
177
|
+
font-size: 0.875rem !important;
|
|
178
|
+
color: rgba(255, 255, 255, 0.7) !important;
|
|
179
|
+
line-height: 1.5 !important;
|
|
180
|
+
margin: 0 !important;
|
|
181
|
+
font-family: 'Poppins', sans-serif !important;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.driver-popover-footer {
|
|
185
|
+
margin-top: 1.25rem !important;
|
|
186
|
+
display: flex !important;
|
|
187
|
+
align-items: center !important;
|
|
188
|
+
justify-content: space-between !important;
|
|
189
|
+
gap: 0.5rem !important;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.driver-popover-footer button {
|
|
193
|
+
height: 2rem !important;
|
|
194
|
+
min-height: 2rem !important;
|
|
195
|
+
padding: 0 1rem !important;
|
|
196
|
+
font-size: 0.875rem !important;
|
|
197
|
+
font-weight: 600 !important;
|
|
198
|
+
border-radius: 0.5rem !important;
|
|
199
|
+
display: inline-flex !important;
|
|
200
|
+
align-items: center !important;
|
|
201
|
+
justify-content: center !important;
|
|
202
|
+
cursor: pointer !important;
|
|
203
|
+
font-family: 'Poppins', sans-serif !important;
|
|
204
|
+
text-shadow: none !important;
|
|
205
|
+
border: none !important;
|
|
206
|
+
transition: all 0.2s ease-in-out !important;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.driver-popover-footer .driver-popover-next-btn,
|
|
210
|
+
.driver-popover-footer .driver-popover-done-btn {
|
|
211
|
+
background-color: #1eb854 !important; /* DaisyUI Primary */
|
|
212
|
+
color: #000000 !important;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.driver-popover-footer .driver-popover-next-btn:hover,
|
|
216
|
+
.driver-popover-footer .driver-popover-done-btn:hover {
|
|
217
|
+
background-color: #1aa049 !important;
|
|
218
|
+
transform: scale(1.05);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.driver-popover-footer .driver-popover-prev-btn {
|
|
222
|
+
background-color: rgba(255, 255, 255, 0.05) !important; /* DaisyUI Ghost */
|
|
223
|
+
color: rgba(255, 255, 255, 0.7) !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.driver-popover-footer .driver-popover-prev-btn:hover {
|
|
227
|
+
background-color: rgba(255, 255, 255, 0.1) !important;
|
|
228
|
+
color: #ffffff !important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.driver-popover-progress-text {
|
|
232
|
+
font-size: 0.75rem !important;
|
|
233
|
+
font-family: monospace !important;
|
|
234
|
+
color: rgba(255, 255, 255, 0.4) !important;
|
|
235
|
+
margin: 0 !important;
|
|
236
|
+
font-weight: 500 !important;
|
|
237
|
+
letter-spacing: 0.05em !important;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.driver-popover-close-btn {
|
|
241
|
+
position: absolute !important;
|
|
242
|
+
top: 1rem !important;
|
|
243
|
+
right: 1rem !important;
|
|
244
|
+
color: rgba(255, 255, 255, 0.4) !important;
|
|
245
|
+
transition: color 0.2s !important;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.driver-popover-close-btn:hover {
|
|
249
|
+
color: #ff5252 !important; /* Error red */
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/* Hide the old-school arrow completely for a cleaner floating card look */
|
|
253
|
+
.driver-popover-arrow {
|
|
254
|
+
display: none !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/* Modern backdrop */
|
|
258
|
+
.driver-overlay {
|
|
259
|
+
backdrop-filter: blur(4px) !important;
|
|
260
|
+
opacity: 0.7 !important;
|
|
261
|
+
background-color: #000000 !important;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
/* === TAMBAHAN UNTUK ORB & HOLOGRAM (HIJAU SEIRAMA) === */
|
|
265
|
+
:root {
|
|
266
|
+
--color-holo-border: linear-gradient(90deg, oklch(var(--p)), oklch(var(--su)), oklch(var(--p)));
|
|
267
|
+
--glass-bg: rgba(255, 255, 255, 0.03);
|
|
268
|
+
--glass-border: rgba(255, 255, 255, 0.08);
|
|
269
|
+
--glass-blur: blur(20px);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/* === ORB & HUD KEYFRAMES === */
|
|
273
|
+
@keyframes spin-slow {
|
|
274
|
+
from {
|
|
275
|
+
transform: rotate(0deg);
|
|
276
|
+
}
|
|
277
|
+
to {
|
|
278
|
+
transform: rotate(360deg);
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
@keyframes spin-slow-reverse {
|
|
283
|
+
from {
|
|
284
|
+
transform: rotate(360deg);
|
|
285
|
+
}
|
|
286
|
+
to {
|
|
287
|
+
transform: rotate(0deg);
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
@keyframes orbital-spin {
|
|
292
|
+
0% {
|
|
293
|
+
transform: rotate(0deg);
|
|
294
|
+
}
|
|
295
|
+
100% {
|
|
296
|
+
transform: rotate(360deg);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
@keyframes orbital-spin-rev {
|
|
301
|
+
0% {
|
|
302
|
+
transform: rotate(360deg);
|
|
303
|
+
}
|
|
304
|
+
100% {
|
|
305
|
+
transform: rotate(0deg);
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
@keyframes anxiety-vibrate {
|
|
310
|
+
0% {
|
|
311
|
+
transform: translate(0, 0);
|
|
312
|
+
}
|
|
313
|
+
25% {
|
|
314
|
+
transform: translate(-1.5px, 1px);
|
|
315
|
+
}
|
|
316
|
+
50% {
|
|
317
|
+
transform: translate(1.5px, -1px);
|
|
318
|
+
}
|
|
319
|
+
75% {
|
|
320
|
+
transform: translate(-1px, -1.5px);
|
|
321
|
+
}
|
|
322
|
+
100% {
|
|
323
|
+
transform: translate(0, 0);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
@keyframes sweat-drip {
|
|
328
|
+
0% {
|
|
329
|
+
transform: translateY(0) scale(0.8);
|
|
330
|
+
opacity: 0;
|
|
331
|
+
}
|
|
332
|
+
20% {
|
|
333
|
+
transform: translateY(2px) scale(1);
|
|
334
|
+
opacity: 0.9;
|
|
335
|
+
}
|
|
336
|
+
75% {
|
|
337
|
+
transform: translateY(8px) scale(1.1);
|
|
338
|
+
opacity: 0.8;
|
|
339
|
+
}
|
|
340
|
+
100% {
|
|
341
|
+
transform: translateY(14px) scale(0.4);
|
|
342
|
+
opacity: 0;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
@keyframes slideUpFadeIn {
|
|
347
|
+
from {
|
|
348
|
+
opacity: 0;
|
|
349
|
+
transform: translateY(20px) scale(0.95);
|
|
350
|
+
}
|
|
351
|
+
to {
|
|
352
|
+
opacity: 1;
|
|
353
|
+
transform: translateY(0) scale(1);
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
@keyframes neuron-spin {
|
|
358
|
+
0% {
|
|
359
|
+
transform: rotateX(45deg) rotateY(0deg) rotateZ(45deg);
|
|
360
|
+
}
|
|
361
|
+
100% {
|
|
362
|
+
transform: rotateX(45deg) rotateY(360deg) rotateZ(45deg);
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.perspective-1000 {
|
|
367
|
+
perspective: 1000px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
/* === ORB ANIMATIONS === */
|
|
371
|
+
@keyframes orb-breathe {
|
|
372
|
+
0%,
|
|
373
|
+
100% {
|
|
374
|
+
transform: scale(0.95);
|
|
375
|
+
opacity: 0.8;
|
|
376
|
+
}
|
|
377
|
+
50% {
|
|
378
|
+
transform: scale(1.05);
|
|
379
|
+
opacity: 1;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
@keyframes orb-think {
|
|
384
|
+
0% {
|
|
385
|
+
transform: rotate(0deg) scale(1);
|
|
386
|
+
}
|
|
387
|
+
50% {
|
|
388
|
+
transform: rotate(180deg) scale(1.1);
|
|
389
|
+
}
|
|
390
|
+
100% {
|
|
391
|
+
transform: rotate(360deg) scale(1);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
@keyframes orb-error {
|
|
396
|
+
0%,
|
|
397
|
+
100% {
|
|
398
|
+
opacity: 0.3;
|
|
399
|
+
}
|
|
400
|
+
50% {
|
|
401
|
+
opacity: 1;
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
/* === HOLOGRAM CARD ANIMATIONS === */
|
|
406
|
+
@keyframes holo-border-flow {
|
|
407
|
+
0% {
|
|
408
|
+
background-position: 0% 50%;
|
|
409
|
+
}
|
|
410
|
+
100% {
|
|
411
|
+
background-position: 200% 50%;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
@keyframes holo-scanline {
|
|
416
|
+
0% {
|
|
417
|
+
transform: translateY(-100%);
|
|
418
|
+
}
|
|
419
|
+
100% {
|
|
420
|
+
transform: translateY(100%);
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
@keyframes holo-enter {
|
|
425
|
+
0% {
|
|
426
|
+
opacity: 0;
|
|
427
|
+
transform: translateY(20px);
|
|
428
|
+
}
|
|
429
|
+
100% {
|
|
430
|
+
opacity: 1;
|
|
431
|
+
transform: translateY(0);
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
@keyframes holo-project-in {
|
|
436
|
+
0% {
|
|
437
|
+
opacity: 0;
|
|
438
|
+
transform: scale(0.3) translateY(20px);
|
|
439
|
+
}
|
|
440
|
+
70% {
|
|
441
|
+
transform: scale(1.05);
|
|
442
|
+
}
|
|
443
|
+
100% {
|
|
444
|
+
opacity: 1;
|
|
445
|
+
transform: scale(1) translateY(0);
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
@keyframes holo-dismiss {
|
|
450
|
+
0% {
|
|
451
|
+
opacity: 1;
|
|
452
|
+
transform: scale(1);
|
|
453
|
+
}
|
|
454
|
+
30% {
|
|
455
|
+
opacity: 1;
|
|
456
|
+
transform: scale(1.05);
|
|
457
|
+
}
|
|
458
|
+
100% {
|
|
459
|
+
opacity: 0;
|
|
460
|
+
transform: scale(0.5) translateY(20px);
|
|
461
|
+
filter: blur(5px);
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
/* === RESPONSE TRANSITIONS === */
|
|
466
|
+
@keyframes response-fade-in {
|
|
467
|
+
0% {
|
|
468
|
+
opacity: 0;
|
|
469
|
+
transform: translateY(10px);
|
|
470
|
+
}
|
|
471
|
+
100% {
|
|
472
|
+
opacity: 1;
|
|
473
|
+
transform: translateY(0);
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
@keyframes response-fade-out {
|
|
478
|
+
0% {
|
|
479
|
+
opacity: 1;
|
|
480
|
+
transform: translateY(0);
|
|
481
|
+
}
|
|
482
|
+
100% {
|
|
483
|
+
opacity: 0;
|
|
484
|
+
transform: translateY(-10px);
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
/* === TOAST NOTIFICATIONS === */
|
|
489
|
+
@keyframes toast-slide-in {
|
|
490
|
+
0% {
|
|
491
|
+
opacity: 0;
|
|
492
|
+
transform: translateX(100%);
|
|
493
|
+
}
|
|
494
|
+
100% {
|
|
495
|
+
opacity: 1;
|
|
496
|
+
transform: translateX(0);
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
@keyframes toast-fade-out {
|
|
501
|
+
0% {
|
|
502
|
+
opacity: 1;
|
|
503
|
+
}
|
|
504
|
+
100% {
|
|
505
|
+
opacity: 0;
|
|
506
|
+
transform: translateX(50%);
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
/* === NOW PLAYING WIDGET === */
|
|
511
|
+
@keyframes music-bar {
|
|
512
|
+
0%,
|
|
513
|
+
100% {
|
|
514
|
+
height: 4px;
|
|
515
|
+
}
|
|
516
|
+
50% {
|
|
517
|
+
height: 16px;
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
@keyframes slide-right {
|
|
522
|
+
0% {
|
|
523
|
+
left: 0%;
|
|
524
|
+
opacity: 0;
|
|
525
|
+
}
|
|
526
|
+
50% {
|
|
527
|
+
opacity: 1;
|
|
528
|
+
}
|
|
529
|
+
100% {
|
|
530
|
+
left: 100%;
|
|
531
|
+
opacity: 0;
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
/* === HOLOGRAPHIC UI SETTINGS === */
|
|
536
|
+
|
|
537
|
+
.holo-card {
|
|
538
|
+
@apply bg-black/40 backdrop-blur-2xl border border-primary/30 shadow-[0_0_20px_oklch(var(--p)/0.15)];
|
|
539
|
+
transition: all 0.3s ease;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.holo-card:hover {
|
|
543
|
+
@apply border-primary/70 shadow-[0_0_35px_oklch(var(--p)/0.4)] scale-[1.01];
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
/* === MONACO EDITOR TAILWIND FIXES === */
|
|
547
|
+
/* Remove the aggressive * border reset that broke the layout */
|
|
548
|
+
.monaco-editor .find-widget {
|
|
549
|
+
background-color: #252526 !important;
|
|
550
|
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
|
|
551
|
+
z-index: 50 !important;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.monaco-editor .find-widget .monaco-inputbox {
|
|
555
|
+
background-color: #3c3c3c !important;
|
|
556
|
+
color: #ccc !important;
|
|
557
|
+
border: 1px solid transparent !important;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
|
|
561
|
+
border: 1px solid #007fd4 !important;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
/* Fix Tailwind button resets causing Find widget buttons to collapse */
|
|
565
|
+
.monaco-editor .find-widget .monaco-button,
|
|
566
|
+
.monaco-editor .find-widget .monaco-custom-checkbox,
|
|
567
|
+
.monaco-editor .find-widget .button,
|
|
568
|
+
.monaco-editor .find-widget .close-fw {
|
|
569
|
+
background-color: transparent !important;
|
|
570
|
+
border: 1px solid transparent !important;
|
|
571
|
+
display: flex !important;
|
|
572
|
+
align-items: center !important;
|
|
573
|
+
justify-content: center !important;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.monaco-editor .find-widget .toggle-replace-button {
|
|
577
|
+
margin-right: 4px !important;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
/* Tooltip hovering fix - MATIIN TOTAL */
|
|
581
|
+
.monaco-hover,
|
|
582
|
+
.monaco-popover,
|
|
583
|
+
.hover-widget,
|
|
584
|
+
.monaco-editor-hover {
|
|
585
|
+
display: none !important;
|
|
586
|
+
opacity: 0 !important;
|
|
587
|
+
visibility: hidden !important;
|
|
588
|
+
pointer-events: none !important;
|
|
589
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1422 800" opacity="0.3">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="oooscillate-grad">
|
|
4
|
+
<stop stop-color="hsl(206, 75%, 49%)" stop-opacity="1" offset="0%"></stop>
|
|
5
|
+
<stop stop-color="hsl(331, 90%, 56%)" stop-opacity="1" offset="100%"></stop>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
<g stroke-width="1" stroke="url(#oooscillate-grad)" fill="none" stroke-linecap="round">
|
|
9
|
+
<path d="M 0 448 Q 355.5 -100 711 400 Q 1066.5 900 1422 448" opacity="0.05"></path>
|
|
10
|
+
<path d="M 0 420 Q 355.5 -100 711 400 Q 1066.5 900 1422 420" opacity="0.11"></path>
|
|
11
|
+
<path d="M 0 392 Q 355.5 -100 711 400 Q 1066.5 900 1422 392" opacity="0.18"></path>
|
|
12
|
+
<path d="M 0 364 Q 355.5 -100 711 400 Q 1066.5 900 1422 364" opacity="0.24"></path>
|
|
13
|
+
<path d="M 0 336 Q 355.5 -100 711 400 Q 1066.5 900 1422 336" opacity="0.30"></path>
|
|
14
|
+
<path d="M 0 308 Q 355.5 -100 711 400 Q 1066.5 900 1422 308" opacity="0.37"></path>
|
|
15
|
+
<path d="M 0 280 Q 355.5 -100 711 400 Q 1066.5 900 1422 280" opacity="0.43"></path>
|
|
16
|
+
<path d="M 0 252 Q 355.5 -100 711 400 Q 1066.5 900 1422 252" opacity="0.49"></path>
|
|
17
|
+
<path d="M 0 224 Q 355.5 -100 711 400 Q 1066.5 900 1422 224" opacity="0.56"></path>
|
|
18
|
+
<path d="M 0 196 Q 355.5 -100 711 400 Q 1066.5 900 1422 196" opacity="0.62"></path>
|
|
19
|
+
<path d="M 0 168 Q 355.5 -100 711 400 Q 1066.5 900 1422 168" opacity="0.68"></path>
|
|
20
|
+
<path d="M 0 140 Q 355.5 -100 711 400 Q 1066.5 900 1422 140" opacity="0.75"></path>
|
|
21
|
+
<path d="M 0 112 Q 355.5 -100 711 400 Q 1066.5 900 1422 112" opacity="0.81"></path>
|
|
22
|
+
<path d="M 0 84 Q 355.5 -100 711 400 Q 1066.5 900 1422 84" opacity="0.87"></path>
|
|
23
|
+
<path d="M 0 56 Q 355.5 -100 711 400 Q 1066.5 900 1422 56" opacity="0.94"></path>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|