프로그래밍

[Qt/PyQt] QPushButton CSS StyleSheet 예제 모음

판다의 삶 2020. 8. 31. 16:01
728x90

사용한 색상표입니다.

rgb(255, 190, 11)

rgb(251, 86, 7)

rgb(255, 0, 110)

rgb(131, 56, 236)

rgb(58, 134, 255)

 

 

QPushButton{
	color: white;
	background-color: rgb(58, 134, 255);
	border-radius: 5px;
}

 

 

QPushButton{
	color: rgb(58, 134, 255);
	background-color: white;
	border: 2px solid rgb(58, 134, 255);
	border-radius: 5px;
}

 

 

QPushButton{
	color: white;
	background-color: rgb(58, 134, 255);
	border-radius: 20px;
}

 

 

QPushButton{
	color: rgb(58, 134, 255);
	background-color: white;
	border: 2px solid rgb(58, 134, 255);
	border-radius: 20px;
}

 

 

QPushButton{
	color: white;
	background-color: rgb(58, 134, 255);
}

 

 

QPushButton{
	color: rgb(58, 134, 255);
	background-color: white;
	border: 2px solid rgb(58, 134, 255);
}

 

 

QPushButton{
	color: white;
	background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:1, stop:0 rgba(255, 190, 11, 255), stop:1 rgba(251, 86, 7, 255));
	border-radius: 20px;
}

 

 

QPushButton{
	color: white;
	background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:0.857143, y2:0.857955, stop:0 rgba(10, 242, 251, 255), stop:1 rgba(224, 6, 159, 255));
	border-radius: 20px;
}

 

 

QPushButton{
	color: white;
	background-color:qlineargradient(spread:reflect, x1:0.5, y1:0.5, x2:1, y2:0.5, stop:0 rgba(255, 199, 0, 255), stop:1 rgba(192, 5, 67, 255));
	border-radius: 20px;
}

 

 

QPushButton{
	color: white;
	background-color:qlineargradient(spread:reflect, x1:1, y1:0, x2:0.995, y2:1, stop:0 rgba(218, 218, 218, 255), stop:0.305419 rgba(0, 7, 11, 255), stop:0.935961 rgba(2, 11, 18, 255), stop:1 rgba(240, 240, 240, 255));
	border: 1px solid black;
	border-radius: 20px;
}

 

 

 


 

 

[파이썬] PyQt 관련 유용한 사이트 모음

PyQt 학습이나 개발 시 참고할 만한 튜토리얼이나 예제 사이트입니다. 국내 참고 사이트 1. 예제로 배우는 PyQt PyQt5 위젯이나 간단한 PyQt 활용 프로그램 예제 코드가 게시되어 있습니다. 타 국내 사

life-of-panda.tistory.com

 

728x90