├── LICENSE.md ├── README.md ├── illustrations ├── background │ ├── background-flipped.svg │ └── background.svg ├── banner │ ├── banner.png │ └── banner.svg ├── business-card │ ├── business-back.svg │ └── business-front.svg ├── mobile │ └── mobile.svg └── shirt │ ├── shirt-back-dark.png │ ├── shirt-back-dark.svg │ ├── shirt-back-light.png │ ├── shirt-back-light.svg │ ├── shirt-front-dark.png │ ├── shirt-front-dark.svg │ ├── shirt-front-light.png │ └── shirt-front-light.svg ├── logo ├── README.md ├── favicon │ ├── README.md │ ├── favicon-100.png │ ├── favicon-1024.png │ ├── favicon-2048.png │ └── favicon-512.png ├── icon │ ├── README.md │ ├── dark-100.png │ ├── dark-1024.png │ ├── dark-2048.png │ ├── dark-512.png │ ├── light-100.png │ ├── light-1024.png │ ├── light-2048.png │ └── light-512.png ├── mono │ ├── README.md │ ├── dark-100.png │ ├── dark-1024.png │ ├── dark-2048.png │ ├── dark-512.png │ ├── light-100.png │ ├── light-1024.png │ ├── light-2048.png │ └── light-512.png ├── simple │ ├── README.md │ ├── dark-100.png │ ├── dark-1024.png │ ├── dark-2048.png │ ├── dark-512.png │ ├── light-100.png │ ├── light-1024.png │ ├── light-2048.png │ └── light-512.png ├── social │ ├── README.md │ ├── dark-100.png │ ├── dark-1024.png │ ├── dark-2048.png │ ├── dark-512.png │ ├── light-100.png │ ├── light-1024.png │ ├── light-2048.png │ └── light-512.png ├── source │ ├── README.main.md │ ├── README.type.md │ ├── dark-brackets.svg │ ├── dark.svg │ ├── favicon.svg │ ├── generation.py │ ├── light-brackets.svg │ ├── light.svg │ └── requirements.txt └── standard │ ├── README.md │ ├── dark-100.png │ ├── dark-1024.png │ ├── dark-2048.png │ ├── dark-512.png │ ├── light-100.png │ ├── light-1024.png │ ├── light-2048.png │ └── light-512.png ├── palette ├── README.md ├── alt-A6A6A6.png ├── dark-454647.png ├── light-EBEBEB.png ├── notice-1EADAE.png ├── primary-D9643A.png └── secondary-E95420.png └── website ├── About ├── About.png ├── About_Sponsor_Hover.png └── README.md ├── Coming Soon ├── Coming_Soon.png └── README.md ├── Landing ├── Landing.png ├── Landing_GitStats_Dropdown.png ├── Landing_Status_Hover.png └── README.md ├── Libraries ├── Libraries.png ├── Libraries_Searching_redux.png └── README.md ├── Library ├── Library_acbjs_No_Tutorials.png ├── Library_redux_Has_Tutorial.png └── README.md ├── README.md ├── Status ├── README.md ├── Status.png └── Status_Component_Hover.png └── design.sketch /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/README.md -------------------------------------------------------------------------------- /illustrations/background/background-flipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/background/background-flipped.svg -------------------------------------------------------------------------------- /illustrations/background/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/background/background.svg -------------------------------------------------------------------------------- /illustrations/banner/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/banner/banner.png -------------------------------------------------------------------------------- /illustrations/banner/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/banner/banner.svg -------------------------------------------------------------------------------- /illustrations/business-card/business-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/business-card/business-back.svg -------------------------------------------------------------------------------- /illustrations/business-card/business-front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/business-card/business-front.svg -------------------------------------------------------------------------------- /illustrations/mobile/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/mobile/mobile.svg -------------------------------------------------------------------------------- /illustrations/shirt/shirt-back-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/shirt/shirt-back-dark.png -------------------------------------------------------------------------------- /illustrations/shirt/shirt-back-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/shirt/shirt-back-dark.svg -------------------------------------------------------------------------------- /illustrations/shirt/shirt-back-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/shirt/shirt-back-light.png -------------------------------------------------------------------------------- /illustrations/shirt/shirt-back-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/shirt/shirt-back-light.svg -------------------------------------------------------------------------------- /illustrations/shirt/shirt-front-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/shirt/shirt-front-dark.png -------------------------------------------------------------------------------- /illustrations/shirt/shirt-front-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/shirt/shirt-front-dark.svg -------------------------------------------------------------------------------- /illustrations/shirt/shirt-front-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/shirt/shirt-front-light.png -------------------------------------------------------------------------------- /illustrations/shirt/shirt-front-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/illustrations/shirt/shirt-front-light.svg -------------------------------------------------------------------------------- /logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/README.md -------------------------------------------------------------------------------- /logo/favicon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/favicon/README.md -------------------------------------------------------------------------------- /logo/favicon/favicon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/favicon/favicon-100.png -------------------------------------------------------------------------------- /logo/favicon/favicon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/favicon/favicon-1024.png -------------------------------------------------------------------------------- /logo/favicon/favicon-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/favicon/favicon-2048.png -------------------------------------------------------------------------------- /logo/favicon/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/favicon/favicon-512.png -------------------------------------------------------------------------------- /logo/icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/icon/README.md -------------------------------------------------------------------------------- /logo/icon/dark-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/icon/dark-100.png -------------------------------------------------------------------------------- /logo/icon/dark-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/icon/dark-1024.png -------------------------------------------------------------------------------- /logo/icon/dark-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/icon/dark-2048.png -------------------------------------------------------------------------------- /logo/icon/dark-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/icon/dark-512.png -------------------------------------------------------------------------------- /logo/icon/light-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/icon/light-100.png -------------------------------------------------------------------------------- /logo/icon/light-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/icon/light-1024.png -------------------------------------------------------------------------------- /logo/icon/light-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/icon/light-2048.png -------------------------------------------------------------------------------- /logo/icon/light-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/icon/light-512.png -------------------------------------------------------------------------------- /logo/mono/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/mono/README.md -------------------------------------------------------------------------------- /logo/mono/dark-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/mono/dark-100.png -------------------------------------------------------------------------------- /logo/mono/dark-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/mono/dark-1024.png -------------------------------------------------------------------------------- /logo/mono/dark-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/mono/dark-2048.png -------------------------------------------------------------------------------- /logo/mono/dark-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/mono/dark-512.png -------------------------------------------------------------------------------- /logo/mono/light-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/mono/light-100.png -------------------------------------------------------------------------------- /logo/mono/light-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/mono/light-1024.png -------------------------------------------------------------------------------- /logo/mono/light-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/mono/light-2048.png -------------------------------------------------------------------------------- /logo/mono/light-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/mono/light-512.png -------------------------------------------------------------------------------- /logo/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/simple/README.md -------------------------------------------------------------------------------- /logo/simple/dark-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/simple/dark-100.png -------------------------------------------------------------------------------- /logo/simple/dark-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/simple/dark-1024.png -------------------------------------------------------------------------------- /logo/simple/dark-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/simple/dark-2048.png -------------------------------------------------------------------------------- /logo/simple/dark-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/simple/dark-512.png -------------------------------------------------------------------------------- /logo/simple/light-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/simple/light-100.png -------------------------------------------------------------------------------- /logo/simple/light-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/simple/light-1024.png -------------------------------------------------------------------------------- /logo/simple/light-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/simple/light-2048.png -------------------------------------------------------------------------------- /logo/simple/light-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/simple/light-512.png -------------------------------------------------------------------------------- /logo/social/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/social/README.md -------------------------------------------------------------------------------- /logo/social/dark-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/social/dark-100.png -------------------------------------------------------------------------------- /logo/social/dark-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/social/dark-1024.png -------------------------------------------------------------------------------- /logo/social/dark-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/social/dark-2048.png -------------------------------------------------------------------------------- /logo/social/dark-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/social/dark-512.png -------------------------------------------------------------------------------- /logo/social/light-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/social/light-100.png -------------------------------------------------------------------------------- /logo/social/light-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/social/light-1024.png -------------------------------------------------------------------------------- /logo/social/light-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/social/light-2048.png -------------------------------------------------------------------------------- /logo/social/light-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/social/light-512.png -------------------------------------------------------------------------------- /logo/source/README.main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/source/README.main.md -------------------------------------------------------------------------------- /logo/source/README.type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/source/README.type.md -------------------------------------------------------------------------------- /logo/source/dark-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/source/dark-brackets.svg -------------------------------------------------------------------------------- /logo/source/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/source/dark.svg -------------------------------------------------------------------------------- /logo/source/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/source/favicon.svg -------------------------------------------------------------------------------- /logo/source/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/source/generation.py -------------------------------------------------------------------------------- /logo/source/light-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/source/light-brackets.svg -------------------------------------------------------------------------------- /logo/source/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/source/light.svg -------------------------------------------------------------------------------- /logo/source/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | cairosvg -------------------------------------------------------------------------------- /logo/standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/standard/README.md -------------------------------------------------------------------------------- /logo/standard/dark-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/standard/dark-100.png -------------------------------------------------------------------------------- /logo/standard/dark-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/standard/dark-1024.png -------------------------------------------------------------------------------- /logo/standard/dark-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/standard/dark-2048.png -------------------------------------------------------------------------------- /logo/standard/dark-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/standard/dark-512.png -------------------------------------------------------------------------------- /logo/standard/light-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/standard/light-100.png -------------------------------------------------------------------------------- /logo/standard/light-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/standard/light-1024.png -------------------------------------------------------------------------------- /logo/standard/light-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/standard/light-2048.png -------------------------------------------------------------------------------- /logo/standard/light-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/logo/standard/light-512.png -------------------------------------------------------------------------------- /palette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/palette/README.md -------------------------------------------------------------------------------- /palette/alt-A6A6A6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/palette/alt-A6A6A6.png -------------------------------------------------------------------------------- /palette/dark-454647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/palette/dark-454647.png -------------------------------------------------------------------------------- /palette/light-EBEBEB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/palette/light-EBEBEB.png -------------------------------------------------------------------------------- /palette/notice-1EADAE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/palette/notice-1EADAE.png -------------------------------------------------------------------------------- /palette/primary-D9643A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/palette/primary-D9643A.png -------------------------------------------------------------------------------- /palette/secondary-E95420.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/palette/secondary-E95420.png -------------------------------------------------------------------------------- /website/About/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/About/About.png -------------------------------------------------------------------------------- /website/About/About_Sponsor_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/About/About_Sponsor_Hover.png -------------------------------------------------------------------------------- /website/About/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/About/README.md -------------------------------------------------------------------------------- /website/Coming Soon/Coming_Soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Coming Soon/Coming_Soon.png -------------------------------------------------------------------------------- /website/Coming Soon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Coming Soon/README.md -------------------------------------------------------------------------------- /website/Landing/Landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Landing/Landing.png -------------------------------------------------------------------------------- /website/Landing/Landing_GitStats_Dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Landing/Landing_GitStats_Dropdown.png -------------------------------------------------------------------------------- /website/Landing/Landing_Status_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Landing/Landing_Status_Hover.png -------------------------------------------------------------------------------- /website/Landing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Landing/README.md -------------------------------------------------------------------------------- /website/Libraries/Libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Libraries/Libraries.png -------------------------------------------------------------------------------- /website/Libraries/Libraries_Searching_redux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Libraries/Libraries_Searching_redux.png -------------------------------------------------------------------------------- /website/Libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Libraries/README.md -------------------------------------------------------------------------------- /website/Library/Library_acbjs_No_Tutorials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Library/Library_acbjs_No_Tutorials.png -------------------------------------------------------------------------------- /website/Library/Library_redux_Has_Tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Library/Library_redux_Has_Tutorial.png -------------------------------------------------------------------------------- /website/Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Library/README.md -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/README.md -------------------------------------------------------------------------------- /website/Status/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Status/README.md -------------------------------------------------------------------------------- /website/Status/Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Status/Status.png -------------------------------------------------------------------------------- /website/Status/Status_Component_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/Status/Status_Component_Hover.png -------------------------------------------------------------------------------- /website/design.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdnjs/brand/HEAD/website/design.sketch --------------------------------------------------------------------------------