:root {
    --pulse-blue:    #1788C3;
    --pulse-blue-40: #a2cfe7;
    --pulse-blue-20: #d1e7f3;
    --pulse-red:     #ED1B2F;
    --pulse-red-80:  #f14959;
    --pulse-red-40:  #f8a4ac;
    --pulse-red-20:  #fbd1d5;
    --rmd-black:     #424243;
    --rmd-snc4:      #e6e6e7;
    --rmd-snc1:      #d9d8d5;
    --rmd-snc3:      #9b9b93;
    
    /* see http: //build.fhir.org/ig/FHIR/ig-guidance/colors.html for color index */
    /* 1. IG Title and status text color */
    --ig-status-text-color: white;
    /* 22. Header container color (center)*/
    --ig-header-container-color: var(--rmd-black);
    /* 21. Header color (sides) */
    --ig-header-color: white;
    /* 5. Header strip color */
    --stripe-bg-color: white;
    /* 3. Footer background color */
    --footer-bg-color: white;
    /* 2. Header container color */
    --navbar-bg-color: var(--pulse-red-80);
    --btn-text-color: black;
    /* 6. Menu button hover color */
    --btn-hover-color: var(--pulse-red);
    /* 7. Menu button active color */
    --btn-active-color: var(--pulse-red-40);
    /* 9. Menu item gradient start color */
    --btn-gradient-start-color: var(--pulse-red-80);
    /* 10. Menu item gradient end color */
    --btn-gradient-end-color: var(--pulse-red-80);
    /* 27. Breadcrumb background color */
    --breadcrumb-bg-color: var(--rmd-snc4);
    /* 28. Breadcrumb font color */
    --breadcrumb-text-color: black;
    /* 4. Footer container color */
    --footer-container-bg-color: var(--rmd-black);
    /* 15. Publish box background color */
    --publish-box-bg-color: var(--pulse-blue-20);
    /* 16.  Publish box border definition */
    --publish-box-border: 1px solid var(--pulse-blue);
    /* 17.  TOC box background color */
    --toc-box-bg-color: var(--pulse-blue-20);
    /* 18. TOC box border definition */
    --toc-box-border: 1px solid var(--pulse-blue);;
    /* 19. (STU) Note box background color */
    --stu-note-background-color: var(--rmd-snc1);
    /* 20. (STU) Note box border color */
    --stu-note-border-left-color: var(--rmd-black);
    /* 29. Dragon background color */
    --dragon-background-color: var(--pulse-red-20);
    /* 30. Dragon font color */
    --dragon-text-color: var(--pulse-red);

    /* --btn-gradient-start-color-alpha: #d2b48c;    11. Menu item gradient start color (with alpha) */
    /* --btn-gradient-end-color-alpha: #fa8072;    12. Menu item gradient end color (with alpha) */
    /* --link-color: #2f4f4f;    13. Hyperlink text color */
    /* --link-hover-color: #8b0000;    14. Hyperlink text hover color */
    /* --footer-nav-bg-color: #f5f5f5;    23. Footer navigation background color */
    /* --footer-text-color: #777777;    24. Footer highlight font color */
    /* --footer-hyperlink-text-color: #800000;    25. Footer hyperlinks font color */
    /* --footer-highlight-text-color: #ffff77;    26. Footer highlight font color */

}

/*
The following is the IG publisher code used to determine which class of table is used at the top of a resource page:

    public static String getColor(String status, String sStatus, String fmm) {
        if (sStatus !=null) switch (sStatus) {
            case "Draft": return "colsd";
            case "Trial-Use": return "0" .equals(fmm) ? "colsd": "colstu";
            case "Normative": return "colsn";
            case "Informative": return "colsi";
            case "Deprecated": return "colsdp";
            case "External": return "colse";
        }

        if (fmm !=null) return "0" .equals(fmm) ? "colsd" : "colstu";

        if (status !=null) switch (status) {
            case "Draft": return "colsd";
            case "Retired": return "colsdp";
        }

        return "colsi";
    }

For now, we should only be using colsd (for status=draft) and colsi (status=active)
*/

/* standards status = informative or status = draft */
table.colsi td {
    border-color: var(--rmd-black);
    background-color: var(--rmd-snc1);
}

table.colsd td {
    border-color: var(--pulse-blue);
    background-color: var(--pulse-blue-20);
}

table.colstu td {
    border-color: var(--rmd-black);
    background-color: var(--rmd-snc3);
}

table.colsn td {
    border-color: var(--pulse-red);
    background-color: var(--pulse-red-20);
    text-color: white;
}

table.colse td {
    border-color: #6F2C91;
    background-color: #c5abd3;
}
