DEFAULT_BORDER_STYLE = {
    'style': 'solid',
    'width': '1px',
}
BORDER_STYLES = {
    'dashDot': None,
    'dashDotDot': None,
    'dashed': {
        'style': 'dashed',
    },
    'dotted': {
        'style': 'dotted',
    },
    'double': {
        'style': 'double',
    },
    'hair': None,
    'medium': {
        'style': 'solid',
        'width': '2px',
    },
    'mediumDashDot': {
        'style': 'solid',
        'width': '2px',
    },
    'mediumDashDotDot': {
        'style': 'solid',
        'width': '2px',
    },
    'mediumDashed': {
        'width': '2px',
        'style': 'dashed',
    },
    'slantDashDot': None,
    'thick': {
        'style': 'solid',
        'width': '1px',
    },
    'thin': {
        'style': 'solid',
        'width': '1px',
    },
}
