/* PrismJS 1.23.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+c+cpp+java+markup-templating+php+python+sql */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"], pre[class*="language-"] {
	color: #f8f8f2;   /* Normal karakter rengi */  
	background: none; /* Kod satırının arka planı */
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.4; /*1.5*/

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	text-shadow: none;
	background: rgb(140, 140, 140); /*#b3d4fc;*/
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: rgb(140, 140, 140); /*#b3d4fc;*/
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */
pre[class*="language-"] {
	padding: 0em 1em; /*1em;*/
	margin: .5em 0;
	overflow: auto;
	border-radius: 0.3em; /* ekleme */
}

:not(pre) > code[class*="language-"], pre[class*="language-"] {
	background: #272822; /* Arka plan rengi #f5f2f0; */
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #8292a2; /*slategray*/
}

.token.punctuation {
	color: #f8f8f2; /* #999 */
}

.token.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
	color: #e539bc;
}

.token.boolean,
.token.number {
	color: #9ed1fe;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #a6e22e;
}

.token.operator {
	color: #4ca6ff;
}

.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
	color: #f8f8f2;
}

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
	color: #ffc800; /* Fonksiyon ve sınıf isimleri */
}

.token.keyword {
	color: #c248f6; /* #e539bc #66d9ef;*/
}

.token.regex,
.token.important,
.token.variable {
	color: #fd971f;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

pre.bg-pro {
	border:1px solid rgb(224,224,224);
	/*box-shadow:2px 2px 4px #c8c8c8;*/
}

pre.bg-pro, pre.bg-pro > code {
	background: rgb(236, 236, 236); /* Arka plan rengi */
    	color: rgb(100, 100, 100); /* Normal karakter rengi */ 
	font-size:1.0em;
	text-shadow: 0px 1px rgba(0, 0, 0, 0.4);
	line-height: 1.4;
}

pre.bg-pro > code > .token.punctuation {
	color: #f785ff; /* Parentez ve virgül */
}

pre.bg-pro > code > .token.function, pre.bg-pro > code > .token.class-name {
	/*color: #fac702;*/ /* Fonksiyon ve sınıf isimleri */
}

pre.bg-pro > code > .token.comment {
	color: rgb(200,200,200);
}