fix: restore design-system files accidentally reverted in prior commit

Commit 669a661 had a stale staged deletion of cc-design-system.css and
reverted three other CSS-variable files. This commit restores them to
the state from cd37771 (adopt --cc-* CSS variable system).
This commit is contained in:
CC Worker
2026-05-31 21:15:13 +00:00
parent 669a6616d8
commit 3ffbb11552
4 changed files with 981 additions and 5 deletions
@@ -83,7 +83,7 @@ export class CCLiveTranscriptionShapeUtil extends CCBaseShapeUtil<CCLiveTranscri
height: '48px',
borderRadius: '50%',
border: 'none',
backgroundColor: isRecording ? '#f44336' : '#4CAF50',
backgroundColor: isRecording ? 'var(--cc-recording-active)' : 'var(--cc-recording-idle)',
color: 'white',
fontSize: '24px',
cursor: 'pointer',
@@ -105,7 +105,7 @@ export class CCLiveTranscriptionShapeUtil extends CCBaseShapeUtil<CCLiveTranscri
<div style={{
fontSize: '16px',
fontWeight: 'bold',
color: isRecording ? '#f44336' : '#4CAF50'
color: isRecording ? 'var(--cc-recording-active)' : 'var(--cc-recording-idle)'
}}>
{isRecording ? 'Recording...' : 'Ready'}
</div>