/* stylelint-disable */

/* These variables can be used to control values throughout the job board. */
:root {
    /*  Darker primary color
    WARNING - This can be set in the Ashby admin under theme settings!
    If you modify, you should make sure your colors work with the settings there. */
    --colorPrimary900: #d33d2f;

    /*  Lighter primary color
    WARNING - This can be set in the Ashby admin under theme settings!
    If you modify, you should make sure your colors work with the settings there. */
    --colorPrimary600: #EA4134;

    /*  The max width of the job board container */
    --widthMaxJobBoard: 800px;

    /*  The max width of the application form section */
    --widthMaxApplication: 800px;

    /*  Container border radius */
    --borderRadiusContainer: 6px;

    /*  Border radius of control elements (e.g. input boxes) */
    --borderRadiusControl: 6px;

    /*  Button border radius */
    --borderRadiusButton: 6px;

    /*  Font families */
    --fontFamily: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica", "Arial", sans-serif;

    --colorAppBackground: #f7f8fa;
    
    /* Sola Design System Colors */
    --colorTextPrimary: #1C1C1C; /* jet - primary text color */
    --colorTextSecondary: #55646E; /* tertiary-400 - secondary text */
    --colorTextMuted: #9CA3AF; /* gray-400 - muted text */
}

