mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-16 18:29:17 -04:00
21 lines
374 B
TypeScript
21 lines
374 B
TypeScript
import type { ThemeConfig } from 'antd';
|
|
|
|
export const defaultTheme: ThemeConfig = {
|
|
token: {
|
|
colorPrimary: '#38a0ff',
|
|
},
|
|
components: {
|
|
Form: {
|
|
fontSize: 12,
|
|
margin: 8,
|
|
marginLG: 12,
|
|
marginXS: 4,
|
|
padding: 8,
|
|
paddingLG: 12,
|
|
paddingXS: 4,
|
|
itemMarginBottom: 4,
|
|
verticalLabelPadding: '0 0 2px',
|
|
},
|
|
},
|
|
};
|